.search_client{
    display: flex;
    flex-direction: row;
    gap: 5px;
}
.search_client input, .search_client button{
    background: #27272A!important;
    border-radius: 0.5rem!important;
    color:#fff!important;
}
.search_client button{
    border: none!important;
}
.search_client input:hover{
    background: #4f4f55!important;
    border-radius: 0.5rem!important;

}
.searchUser {
    display: flex;
    gap: 2rem;
    flex-direction: column;
    height: 58vh;
    overflow-y: scroll;
}
.searchUser_item {
    background: #1B1B1E;
    padding: 10px;
    border-radius: 1rem;
    width: 23rem;
    font-size: 1.2rem;
    color: #fff;
    gap:10px;
    display: flex;
    flex-direction: column;
}

.searchUser_button a{
    background: #000;
    padding: 0.5rem;
    text-align: center;
    border-radius: 0.5rem;
    color: white;
    display: block;
    width: 100%;
}

.gcs-toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    z-index: 9999;
    animation: fadeIn 0.6s ease;
    min-width: 300px;
}
.fail-redemption .gcs-toast-message{
    color:#CA3469;
    font-size: 1rem;
    font-weight: 400;
}
.aprove-redemption .gcs-toast-message{
    color:#17C964;
    font-size: 1rem;
    font-weight: 400;
}

.aprove-redemption{
    background: #02140A;
    padding: 1rem;
    border-radius: 1rem;
    display:flex;
    gap: 1rem;
    align-items: center;
    width: 40%;
}


.fail-redemption{
    background: #180209;
    padding: 1rem;
    border-radius: 1rem;
    display:flex;
    gap: 1rem;
    align-items: center;
    width: 40%;
}

.fail-redemption i{
    color: #F54180;
    font-size: 1.3rem;
    background: #610726;
    display: flex;
    height: 40px;
    width: 40px;
    padding: 0 0 3px 0;
    align-items: center;
    justify-content: center;
    border-radius: 20rem;
}
.aprove-redemption i{
    color: #17C964;
    font-size: 1.3rem;
    background: #095028;
    display: flex;
    height: 40px;
    width: 40px;
    padding: 1px 0 0 0;
    align-items: center;
    justify-content: center;
    border-radius: 20rem;
}
.gcs-toast-close {
    position: absolute;
    top: 5px;
    right: 10px;
    cursor: pointer;
    font-size: 18px;
    color: #aaa;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}