/**
 * Admin Page Styles - Optimized
 * Uses utility classes and CSS variables
 */

.admin-header {
    background: var(--sobie-gradient);
    color: white;
    padding: var(--space-lg) 0;
}

.admin-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.data-table {
    font-size: var(--font-size-sm);
}

.data-table th {
    background-color: var(--gray-50);
    border-top: none;
    font-weight: 600;
    color: var(--gray-600);
    white-space: nowrap;
}

.data-table td {
    vertical-align: middle;
}

.role-badge {
    font-size: 0.75rem;
}

.action-buttons .btn {
    padding: 0.25rem 0.5rem;
    margin: 0 0.125rem;
    font-size: 0.8rem;
}

.filter-section {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.stats-card {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.stats-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--sobie-primary);
}

.copy-feedback {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    min-width: 250px;
}

.no-auth {
    text-align: center;
    padding: 3rem 2rem;
}

.no-auth .icon {
    font-size: 4rem;
    color: #dc3545;
    margin-bottom: 1rem;
}