.user-filters-container {
    margin-bottom: 15px;
}

.toggle-filter {
    display: flex;
    align-items: center;
    background: #007bff !important;
    color: white;
    border: none;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    height: 37px;
    transition: .2s all ease-in-out;
}

.toggle-filter:hover {
    background: #0760bf !important;
}

.toggle-filter i {
    margin-right: 8px;
}

.user-filters {
    display: none; /* Initially hidden */
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-top: 10px;
}

.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.user-filters input,
.user-filters select {
    flex: 1;
    padding: 8px;
    font-size: 14px;
    border: 1px solid #aaa;
    border-radius: 4px;
}

#search_users {
    width: max-content;
    padding: 8px 16px;
    background: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#search_users:hover {
    background: #218838;
}

@media (max-width: 600px) {
    .filter-row {
        flex-direction: column;
    }
}

table.wp-list-table {
    width: 100%;
    border-collapse: collapse;
}

table.wp-list-table th,
table.wp-list-table td {
    padding: 10px;
    border: 1px solid #ddd;
    text-align: left;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 22px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #4CAF50;
}

input:checked + .slider:before {
    transform: translateX(18px);
}

.status-label {
    margin-left: 10px;
    font-weight: bold;
}
/* Add User Button */
.add-user-btn {
    display: inline-block;
    margin-bottom: 0px;
    padding: 8px 12px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 37px;
    font-size: 14px;
}

.add-user-btn:hover {
    background-color: #218838;
}

/* Modal Styling
.modal {
    display: none;
}
#add_user_modal.modal {
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

#add_user_modal .modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    border-radius: 8px;
}

#add_user_modal .close {
    float: right;
    font-size: 22px;
    font-weight: bold;
    cursor: pointer;
}

#add_user_modal .close:hover {
    color: red;
}

#add_user_modal.modal input,
#add_user_modal.modal select {
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
} */

#add_user_modal #save_user {
    padding: 8px 16px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    height: 37px;
    display: flex;
    align-items: center;
    justify-content: center;
}
#add_user_modal #save_user:hover {
    background: #0056b3;
}
.tblOverflowScroll {
    overflow-x: auto;
    margin-bottom: 70px;
}
table.wp-list-table th {
    border: 1px solid #344054 !important;
}
table.wp-list-table thead {
    background-color: #344054;
    color: #fff;
}
.tblOverflowScroll::-webkit-scrollbar-track {
    background-color:#0000
}
.tblOverflowScroll::-webkit-scrollbar{
    width:5px;
    height:5px
}
.tblOverflowScroll::-webkit-scrollbar-thumb {
    background-color:#c1c1c1;
    border-radius:3px;
    cursor:pointer;
}
.tblOverflowScroll::-webkit-scrollbar-thumb:hover {
    background-color:#9b9a9a;
}