/* ============================================
   AUDIO PROFANITY CENSOR - STYLESHEET
   Modern, distinctive design with teal/blue accents
   ============================================ */

:root {
    /* Core colors - Cool teal & electric blue */
    --bg-primary: #0a0a0c;
    --bg-secondary: #121216;
    --bg-tertiary: #1a1a1f;
    --bg-elevated: #222228;
    
    --text-primary: #f5f5f7;
    --text-secondary: #9898a0;
    --text-muted: #5a5a64;
    
    /* Accent - Teal/Cyan */
    --accent: #4ecdc4;
    --accent-hover: #6ee7de;
    --accent-glow: rgba(78, 205, 196, 0.25);
    --accent-subtle: rgba(78, 205, 196, 0.1);
    
    /* Secondary accent - Electric Blue */
    --accent-alt: #5c7cfa;
    --accent-alt-glow: rgba(92, 124, 250, 0.25);
    
    /* Status colors */
    --success: #4ecdc4;
    --success-bg: rgba(78, 205, 196, 0.12);
    --error: #e74c3c;
    --error-bg: rgba(231, 76, 60, 0.12);
    --warning: #ffe66d;
    --warning-bg: rgba(255, 230, 109, 0.12);
    
    /* Borders */
    --border: #2a2a32;
    --border-hover: #3a3a44;
    
    /* Spacing & Radius */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition: 0.25s ease;
    --transition-slow: 0.4s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
}

/* ============================================
   RESET & BASE
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

h1 { font-size: 1.75rem; }
h2 { font-size: 1.375rem; }
h3 { font-size: 1.125rem; }

p {
    color: var(--text-secondary);
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-hover);
}

code {
    font-family: 'SF Mono', 'Fira Code', monospace;
    background: var(--bg-tertiary);
    padding: 0.15em 0.4em;
    border-radius: 4px;
    font-size: 0.9em;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn svg {
    flex-shrink: 0;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #6ee7de 100%);
    color: #0a0a0c;
    box-shadow: 0 4px 20px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px var(--accent-glow);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-success {
    background: linear-gradient(135deg, var(--success) 0%, #6ee7de 100%);
    color: #0a0a0c;
    box-shadow: 0 4px 20px var(--accent-alt-glow);
}

.btn-success:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px var(--accent-alt-glow);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
}

.btn-ghost:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border-color: var(--border-hover);
}

.btn-danger {
    background: var(--error-bg);
    color: var(--error);
    border: 1px solid rgba(231, 76, 60, 0.3);
}

.btn-danger:hover {
    background: var(--error);
    color: white;
}

.btn-icon {
    padding: 10px;
    background: transparent;
    color: var(--text-muted);
    border: none;
}

.btn-icon:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.btn-full {
    width: 100%;
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ============================================
   FORM ELEMENTS
   ============================================ */

.form-group {
    margin-bottom: 20px;
}

.form-group > label:not(.toggle-label) {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group .toggle-label {
    margin-top: 4px;
}

/* Simple checkbox group */
.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--accent);
}

.checkbox-group label {
    cursor: pointer;
    margin: 0;
}

.form-group input[type="text"],
.form-group input[type="password"] {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-group input.error {
    border-color: var(--error);
    box-shadow: 0 0 0 3px var(--error-bg);
}

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-hint {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.form-error {
    background: var(--error-bg);
    color: var(--error);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-bottom: 16px;
}

/* Toggle Switch */
.toggle-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.toggle-label input {
    display: none;
}

.toggle-switch {
    width: 44px;
    min-width: 44px;
    height: 24px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 12px;
    position: relative;
    transition: all var(--transition);
    flex-shrink: 0;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 18px;
    height: 18px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: all var(--transition);
}

.toggle-label input:checked + .toggle-switch {
    background: var(--success);
    border-color: var(--success);
}

.toggle-label input:checked + .toggle-switch::after {
    left: 22px;
    background: white;
}

/* ============================================
   AUTH PAGES (Login)
   ============================================ */

.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: 
        radial-gradient(ellipse at 20% 20%, var(--accent-subtle) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
        var(--bg-primary);
}

.auth-container {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.auth-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    position: relative;
    z-index: 1;
}

.auth-header {
    text-align: center;
    margin-bottom: 32px;
}

.auth-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-auth .auth-logo {
    /* no background */
}

.auth-header h1 {
    margin-bottom: 8px;
}

.auth-subtitle {
    font-size: 0.9375rem;
}

.auth-form {
    margin-bottom: 24px;
}

.auth-footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.auth-footer p {
    font-size: 0.875rem;
}

.back-link {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.back-link:hover {
    color: var(--accent);
}

/* Decorative elements */
.auth-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid var(--border);
    opacity: 0.5;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -50px;
}

.circle-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    left: -30px;
}

/* ============================================
   APP HEADER
   ============================================ */

.app-header,
.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
}

.header-left,
.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-small {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.admin-panel .logo-small {
    /* no background */
}

.header-left h1 {
    font-size: 1.125rem;
}

.user-name,
.admin-name {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding: 6px 12px;
    background: var(--bg-tertiary);
    border-radius: 20px;
}

/* ============================================
   MAIN APP PAGE
   ============================================ */

.app-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.app-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 24px;
    background: 
        radial-gradient(ellipse at 50% 0%, var(--accent-subtle) 0%, transparent 60%),
        var(--bg-primary);
}

.upload-container {
    width: 100%;
    max-width: 480px;
}

/* Upload Card */
.upload-card,
.file-card,
.processing-card,
.result-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.upload-area {
    padding: 48px 32px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px dashed transparent;
    margin: -1px;
    border-radius: var(--radius-xl);
}

.upload-area:hover {
    background: var(--bg-tertiary);
    border-color: var(--border);
}

.upload-area.drag-over {
    background: var(--accent-subtle);
    border-color: var(--accent);
}

.upload-icon {
    color: var(--text-muted);
    margin-bottom: 20px;
    transition: color var(--transition);
}

.upload-area:hover .upload-icon {
    color: var(--accent);
}

.upload-area h2 {
    margin-bottom: 8px;
}

.upload-hint {
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.upload-formats {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.format-tag {
    padding: 4px 12px;
    background: var(--bg-tertiary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* File Card */
.file-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.file-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-subtle) 0%, rgba(78, 205, 196, 0.1) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.file-info {
    flex: 1;
    min-width: 0;
}

.file-info h3 {
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 4px;
}

.file-info p {
    font-size: 0.875rem;
}

.file-card .btn-primary {
    margin: 20px 24px;
    width: calc(100% - 48px);
}

/* Processing Card */
.processing-card {
    padding: 48px 32px;
    text-align: center;
}

.processing-animation {
    margin-bottom: 24px;
}

.wave-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    height: 60px;
}

.wave {
    width: 6px;
    height: 20px;
    background: linear-gradient(180deg, var(--accent) 0%, var(--accent-alt) 100%);
    border-radius: 3px;
    animation: wave 1s ease-in-out infinite;
}

.wave-1 { animation-delay: 0s; }
.wave-2 { animation-delay: 0.1s; }
.wave-3 { animation-delay: 0.2s; }
.wave-4 { animation-delay: 0.3s; }
.wave-5 { animation-delay: 0.4s; }

@keyframes wave {
    0%, 100% { height: 20px; }
    50% { height: 50px; }
}

.processing-card h3 {
    margin-bottom: 8px;
}

.processing-hint {
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.progress-bar {
    height: 6px;
    background: var(--bg-tertiary);
    border-radius: 3px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-alt) 100%);
    border-radius: 3px;
    transition: width 0.3s ease;
}

/* Result Card */
.result-card {
    padding: 48px 32px;
    text-align: center;
}

.result-icon {
    margin-bottom: 20px;
}

.result-icon.success {
    color: var(--success);
}

.result-icon.error {
    color: var(--error);
}

.result-card h3 {
    margin-bottom: 8px;
}

.result-card > p {
    margin-bottom: 24px;
}

.result-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-bottom: 32px;
}

.result-stats .stat {
    text-align: center;
}

.result-stats .stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--success);
    line-height: 1.2;
}

.result-stats .stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.result-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Footer */
.app-footer {
    padding: 20px 24px;
    text-align: center;
    border-top: 1px solid var(--border);
}

.app-footer p {
    font-size: 0.8125rem;
}

/* ============================================
   ADMIN PANEL
   ============================================ */

.admin-panel {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.admin-content {
    flex: 1;
    padding: 32px 24px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 32px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon.users-icon {
    background: rgba(92, 124, 250, 0.1);
    color: var(--accent-alt);
}

.stat-icon.active-icon {
    background: var(--success-bg);
    color: var(--success);
}

.stat-icon.tasks-icon {
    background: rgba(78, 205, 196, 0.1);
    color: var(--accent-alt);
}

.stat-info .stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.stat-info .stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition);
}

.tab-btn:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.tab-btn.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #0a0a0c;
}

.tab-btn svg {
    flex-shrink: 0;
}

/* Admin Sections */
.admin-section {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.section-header h2 {
    font-size: 1.125rem;
}

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

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

.data-table th,
.data-table td {
    padding: 16px 24px;
    text-align: left;
}

.data-table th {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
}

.data-table td {
    border-bottom: 1px solid var(--border);
    font-size: 0.9375rem;
}

.data-table tr:last-child td {
    border-bottom: none;
}

.data-table tr:hover td {
    background: var(--bg-tertiary);
}

.user-name .name {
    font-weight: 500;
}

/* Files Table Specific */
.file-name-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.file-name-cell svg {
    color: var(--accent);
    flex-shrink: 0;
}

.filename {
    font-weight: 500;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.user-badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--bg-tertiary);
    border-radius: 6px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.stats-cell {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.date-cell {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.no-action {
    color: var(--text-muted);
}

.access-code {
    font-family: 'SF Mono', 'Fira Code', monospace;
    background: var(--bg-tertiary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8125rem;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.status-badge.active,
.status-badge.success {
    background: var(--success-bg);
    color: var(--success);
}

.status-badge.inactive {
    background: var(--bg-tertiary);
    color: var(--text-muted);
}

.status-badge.processing {
    background: rgba(92, 124, 250, 0.12);
    color: var(--accent-alt);
}

.status-badge.pending {
    background: var(--warning-bg);
    color: var(--warning);
}

.status-badge.failed {
    background: var(--error-bg);
    color: var(--error);
}

.last-login {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Empty State */
.empty-state {
    padding: 64px 24px;
    text-align: center;
    color: var(--text-muted);
}

.empty-state svg {
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state p {
    margin-bottom: 24px;
}

/* ============================================
   MODALS
   ============================================ */

.modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 420px;
    animation: modalIn 0.25s ease;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.modal-header h3 {
    font-size: 1.125rem;
}

.modal-close {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.modal-form {
    padding: 24px;
}

.modal-actions {
    display: flex;
    gap: 12px;
    padding-top: 8px;
}

.modal-actions .spacer {
    flex: 1;
}

/* Success Modal */
.success-modal {
    padding: 40px 32px;
    text-align: center;
}

.success-icon {
    color: var(--success);
    margin-bottom: 16px;
}

.success-modal h3 {
    margin-bottom: 24px;
}

.access-code-display {
    margin-bottom: 16px;
}

.access-code-display label {
    display: block;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.code-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--bg-tertiary);
    padding: 16px 20px;
    border-radius: var(--radius);
}

.code-box span {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--success);
}

.copy-btn {
    padding: 8px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.copy-btn:hover {
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.modal-hint {
    font-size: 0.875rem;
    margin-bottom: 24px;
}

/* Confirm Modal */
.confirm-modal {
    padding: 40px 32px;
    text-align: center;
}

.warning-icon {
    color: var(--warning);
    margin-bottom: 16px;
}

.confirm-modal h3 {
    margin-bottom: 12px;
}

.confirm-modal > p {
    margin-bottom: 24px;
}

.confirm-modal .modal-actions {
    justify-content: center;
}

/* ============================================
   UTILITIES
   ============================================ */

.hidden {
    display: none !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 640px) {
    .app-header,
    .admin-header {
        padding: 12px 16px;
}

    .header-left h1 {
        display: none;
    }
    
    .app-content {
        padding: 24px 16px;
    }
    
    .upload-area {
        padding: 32px 20px;
    }
    
    .admin-content {
        padding: 20px 16px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }
    
    .section-header .btn {
        width: 100%;
    }
    
    .users-table th:nth-child(4),
    .users-table td:nth-child(4) {
        display: none;
    }
    
    .result-stats {
        gap: 32px;
    }
    
    .modal-content {
        margin: 16px;
    }
    
    .auth-card {
        padding: 32px 24px;
}
}
