/* Users Management Page Styles */

/* User Avatar */
.user-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

/* User Info Cell */
.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-name {
    font-weight: 500;
    color: #495057;
    margin: 0;
}

/* Table Alignment */
#usersTable td {
    vertical-align: middle;
}

/* Stats Cards */
.stats-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 12px;
}

.stats-card .card-body {
    padding: 1.25rem;
}

.stats-card h3 {
    color: #fff;
}

.stats-card.stats-active {
    background: linear-gradient(135deg, #45cb85 0%, #2e8b57 100%);
}

.stats-card.stats-blocked {
    background: linear-gradient(135deg, #f06548 0%, #c0392b 100%);
}

.stats-card.stats-new {
    background: linear-gradient(135deg, #299cdb 0%, #1a5276 100%);
}

/* Stats Icon */
.stats-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-icon i {
    font-size: 24px;
    color: #fff;
}

/* Filter Card */
.filter-card {
    border: 1px solid #e9ebec;
    border-radius: 8px;
}
