/**
 * Dark Mode Styles
 */

[data-theme="dark"] {
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --border: #334155;
    
    --gray-50: #1e293b;
    --gray-100: #334155;
    --gray-200: #475569;
    --gray-300: #64748b;
    --gray-400: #94a3b8;
    --gray-500: #cbd5e1;
    --gray-600: #e2e8f0;
    --gray-700: #f1f5f9;
    --gray-800: #f8fafc;
    --gray-900: #ffffff;
}

[data-theme="dark"] .card {
    background: var(--bg-secondary);
    border-color: var(--border);
}

[data-theme="dark"] .table thead {
    background: var(--bg-secondary);
}

[data-theme="dark"] .input {
    background: var(--bg-secondary);
    border-color: var(--border);
    color: var(--text-primary);
}

[data-theme="dark"] .modal {
    background: var(--bg-secondary);
}

[data-theme="dark"] .timeline-content {
    background: var(--bg-secondary);
}

[data-theme="dark"] .btn-outline {
    border-color: var(--border);
    color: var(--text-primary);
}

[data-theme="dark"] .btn-outline:hover {
    background: var(--bg-secondary);
}

