/* Users Management Styles */
.users-container {
    background: #f8f9fc;
    min-height: 100vh;
    padding: 1rem 0;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
}

.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background-color: #d4edda;
    color: #155724;
}

.status-inactive {
    background-color: #f8d7da;
    color: #721c24;
}

.status-staff {
    background-color: #d1ecf1;
    color: #0c5460;
}

.status-superuser {
    background-color: #fff3cd;
    color: #856404;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .users-container {
        padding: 0.5rem 0;
    }
    
    .user-avatar {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .btn-group-vertical .btn {
        margin-bottom: 0.25rem;
    }
}
