.user_cards{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-bottom:0;
    
}
.user_card{
    font-family: var(--wd-title-font);
    font-weight: var(--wd-title-font-weight);
    font-size: 13px;
}

@media(max-width:1200px){
    .user_cards{
       grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:900px){
    .user_cards{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .user_cards{
        grid-template-columns:1fr;
    }
}

/* Status toggle switch */
.tb-switch{
    position:relative;
    display:inline-block;
    width:42px;
    height:22px;
    cursor:pointer;
}
.tb-switch input{
    opacity:0;
    width:0;
    height:0;
}
.tb-switch .tb-slider{
    position:absolute;
    inset:0;
    background:#E0E0E0;
    border-radius:22px;
    transition:.2s;
}
.tb-switch .tb-slider::before{
    content:"";
    position:absolute;
    height:16px;
    width:16px;
    left:4px;
    top:4px;
    background:#fff;
    border-radius:50%;
    transition:.2s;
}
.tb-switch input:checked + .tb-slider{
    background:#2e7d32;
}
.tb-switch input:checked + .tb-slider::before{
    transform:translateX(20px);
}

/* Status change confirmation modal */
.tb-modal-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    z-index:100000;
    align-items:center;
    justify-content:center;
}
.tb-modal-overlay.tb-modal-open{
    display:flex;
}
.tb-modal-box{
    background:#fff;
    padding:24px;
    border-radius:6px;
    max-width:360px;
    width:90%;
    box-shadow:0 6px 24px rgba(0,0,0,.2);
}
.tb-modal-box p{
    margin:0 0 18px;
    font-size:15px;
    line-height:1.4;
}
.tb-modal-actions{
    display:flex;
    justify-content:flex-end;
    gap:10px;
}