/* Users Management Styles */
.users-management-wrapper {
    padding: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
    min-height: 600px;
    position: relative;
    width: 100%;
    overflow-x: hidden;
    z-index: 1;
}

/* Header Section */
.users-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.users-title h3 {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(45deg, #fff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.users-title p {
    margin: 5px 0 0 0;
    opacity: 0.8;
    font-size: 1rem;
}

.users-actions {
    display: flex;
    gap: 10px;
}

.btn-refresh, .btn-export {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

.btn-refresh:hover, .btn-export:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Statistics Cards */
.users-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
    padding: 10px;
}

.stat-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    padding: 25px 20px;
    min-height: 140px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-card:hover::before {
    transform: translateX(100%);
}

/* Specific styles for each card */
.stat-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(130, 87, 255, 0.1), rgba(130, 87, 255, 0.05));
}

.stat-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(82, 183, 255, 0.1), rgba(82, 183, 255, 0.05));
}

.stat-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(70, 203, 174, 0.1), rgba(70, 203, 174, 0.05));
}

.stat-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(255, 135, 91, 0.1), rgba(255, 135, 91, 0.05));
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: rotateY(180deg);
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.stat-value {
    font-size: 1.08rem;
    font-weight: 700;
    text-align: center;
    margin: 10px 0;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    padding: 0 5px;
}

.stat-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    padding: 0 5px;
}

/* Filters Section */
.users-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: end;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 150px;
}

.filter-group label {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
}

.filter-select, .search-input {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.filter-select:focus, .search-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.filter-select option {
    background: #2d3748;
    color: #fff;
}

.search-group {
    flex: 1;
    min-width: 200px;
}

.search-input-wrapper {
    position: relative;
}

.search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.6;
}

.btn-clear-filters {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    background: rgba(255, 107, 107, 0.2);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-clear-filters:hover {
    background: rgba(255, 107, 107, 0.3);
}

/* Table Section */
.users-table-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    margin-bottom: 20px;
}

.table-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header h4 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.table-info {
    opacity: 0.8;
    font-size: 0.9rem;
}

.table-wrapper {
    overflow-x: auto;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.users-table th {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.users-table th:hover {
    background: rgba(255, 255, 255, 0.15);
}

.users-table th.sortable {
    position: relative;
    padding-right: 30px;
}

.sort-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.users-table th.sorted .sort-icon {
    opacity: 1;
}

.users-table td {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    vertical-align: middle;
}

.users-table tbody tr {
    transition: all 0.3s ease;
}

.users-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Status Badges */
.status-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block; /* Ensure proper display */
    max-width: fit-content; /* Don't take more space than needed */
}

.status-active {
    background: rgba(72, 187, 120, 0.2);
    color: #68d391;
    border: 1px solid rgba(72, 187, 120, 0.3);
}

.status-expired {
    background: rgba(245, 101, 101, 0.2);
    color: #fc8181;
    border: 1px solid rgba(245, 101, 101, 0.3);
}

.status-referrer {
    background: rgba(99, 179, 237, 0.2);
    color: #90cdf4;
    border: 1px solid rgba(99, 179, 237, 0.3);
}

/* Address Display */
.address-text {
    font-family: 'Courier New', monospace;
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 6px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%; /* Ensure it doesn't exceed container */
    display: inline-block;
    word-break: break-all; /* Allow breaking at any character for long addresses */
}

.address-text:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 8px;
}

.action-btn {
    padding: 6px 10px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-view {
    background: rgba(99, 179, 237, 0.2);
    color: #90cdf4;
    border: 1px solid rgba(99, 179, 237, 0.3);
}

.btn-view:hover {
    background: rgba(99, 179, 237, 0.3);
}

.btn-revoke {
    background: rgba(245, 101, 101, 0.2);
    color: #fc8181;
    border: 1px solid rgba(245, 101, 101, 0.3);
}

.btn-revoke:hover {
    background: rgba(245, 101, 101, 0.3);
}

/* Loading and Empty States */
.loading-state, .empty-state {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h4 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.empty-state p {
    margin: 0;
    opacity: 0.7;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.pagination-info {
    opacity: 0.8;
    font-size: 0.9rem;
}

.pagination-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pagination-btn {
    padding: 8px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-numbers {
    display: flex;
    gap: 5px;
}

.page-number {
    padding: 8px 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    min-width: 40px;
    text-align: center;
}

.page-number:hover {
    background: rgba(255, 255, 255, 0.2);
}

.page-number.active {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

/* User Details Modal */
.user-modal {
    display: none; /* Initially hidden */
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
}

.user-modal-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    margin: 50vh auto;
    transform: translateY(-50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    color: #fff;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.user-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.user-modal-close {
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.user-modal-close:hover {
    opacity: 1;
    transform: scale(1.1);
}

.user-modal-body {
    padding: 30px;
    max-height: calc(85vh - 140px);
    overflow-y: auto;
    position: relative;
    z-index: 1;
}

/* User Details Tabs */
.user-details-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.user-tab-btn {
    padding: 10px 20px;
    border: none;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    border-bottom: 2px solid transparent;
}

.user-tab-btn:hover {
    color: #fff;
}

.user-tab-btn.active {
    color: #fff;
    border-bottom-color: #fff;
}

.user-tab-content {
    display: none;
}

.user-tab-content.active {
    display: block;
}

/* Detail Sections */
.detail-section h4 {
    margin: 0 0 20px 0;
    font-size: 1.2rem;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px; /* Add bottom margin for spacing between items */
    overflow: hidden; /* Prevent content from spilling */
}

.detail-item label {
    font-size: 0.9rem;
    opacity: 0.8;
    font-weight: 500;
    display: block; /* Ensure label is on its own line */
    margin-bottom: 4px; /* Add spacing between label and value */
}

.detail-item span {
    font-size: 1rem;
    font-weight: 600;
    display: block; /* Ensure value is on its own line */
    word-break: break-all; /* Allow long addresses to break */
}

/* Referral Stats Grid */
.referral-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
    padding: 10px;
}

.referral-stat-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 15px;
    padding: 25px 20px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.referral-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.referral-stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.2);
}

.referral-stat-card:hover::before {
    transform: translateX(100%);
}

.stat-icon {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.referral-stat-card:hover .stat-icon {
    transform: rotateY(180deg);
}

.stat-number {
    font-size: 1.08rem; /* Reduced by 40% from 1.8rem */
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 10px 0;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    padding: 0 5px;
}

.stat-label {
    font-size: 0.68rem; /* Reduced by 20% from 0.85rem */
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 5px;
    position: relative;
    z-index: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    padding: 0 5px;
}

/* Specific styles for each card type */
.referral-stat-card:nth-child(1) {
    background: linear-gradient(135deg, rgba(97, 87, 255, 0.1), rgba(97, 87, 255, 0.05));
}

.referral-stat-card:nth-child(2) {
    background: linear-gradient(135deg, rgba(82, 183, 255, 0.1), rgba(82, 183, 255, 0.05));
}

.referral-stat-card:nth-child(3) {
    background: linear-gradient(135deg, rgba(255, 135, 91, 0.1), rgba(255, 135, 91, 0.05));
}

.referral-stat-card:nth-child(4) {
    background: linear-gradient(135deg, rgba(70, 203, 174, 0.1), rgba(70, 203, 174, 0.05));
}

/* Lists */
.breakdown-list, .purchases-list, .milestones-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.breakdown-item, .purchase-item, .milestone-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.item-title {
    font-weight: 600;
    font-size: 1rem;
}

.item-value {
    font-weight: 700;
    color: #90cdf4;
}

.item-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Modal Footer */
.user-modal-footer {
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.user-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.btn-danger, .btn-secondary {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-danger {
    background: rgba(245, 101, 101, 0.2);
    color: #fc8181;
    border: 1px solid rgba(245, 101, 101, 0.3);
}

.btn-danger:hover {
    background: rgba(245, 101, 101, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Confirmation Modal */
.confirmation-modal {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.confirmation-modal-content {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    margin: 15% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    color: #fff;
}

.confirmation-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.confirmation-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.confirmation-body {
    padding: 20px;
    text-align: center;
}

.confirmation-footer {
    padding: 20px;
    display: flex;
    gap: 15px;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .users-management-wrapper {
        padding: 15px;
    }
    
    .users-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
      .users-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 5px;
    }

    .stat-card {
        min-height: 120px;
        padding: 15px 10px;
    }

    .stat-icon {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
        margin-bottom: 10px;
    }

    .stat-value {
        font-size: 0.95rem;
    }

    .stat-label {
        font-size: 0.62rem;
    }
    
    .users-filters {
        flex-direction: column;
        gap: 15px;
    }
    
    .filter-group {
        min-width: auto;
    }
    
    .table-wrapper {
        font-size: 0.8rem;
    }
    
    .users-table th,
    .users-table td {
        padding: 8px;
    }
    
    .pagination-container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }    .user-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .user-modal-body {
        max-height: calc(90vh - 120px);
        padding: 20px;
    }
    
    .user-modal-body {
        padding: 20px;
    }
    
    .detail-grid {
        grid-template-columns: 1fr;
    }    .referral-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 5px;
    }
    
    .referral-stat-card {
        min-height: 120px;
        padding: 15px 10px;
    }
    
    .stat-icon {
        font-size: 1.2rem;
        width: 35px;
        height: 35px;
        margin-bottom: 10px;
    }
      .stat-number {
        font-size: 0.95rem; /* Reduced proportionally for mobile */
    }
    
    .stat-label {
        font-size: 0.62rem; /* Reduced proportionally for mobile */
    }
    
    .user-actions {
        flex-direction: column;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scrollbar Styling */
.users-management-wrapper ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.users-management-wrapper ::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.users-management-wrapper ::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.users-management-wrapper ::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}
