/* Minimal theme – clean, light, neutral. No peach or color accents. */
:root[data-theme="minimal"] {
    --primary-orange: #e5e7eb;
    --primary-red: #e5e7eb;
    --accent-orange: #6b7280;
    --accent-red: #4b5563;
    --dark-orange: #111827;
    --title-gradient: #111827;
}

body[data-theme="minimal"]:not(.dark-mode) {
    background: #ffffff;
    color: #111827;
}

body[data-theme="minimal"]:not(.dark-mode) .card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

body[data-theme="minimal"] .btn-primary {
    background: #374151 !important;
    color: #ffffff !important;
}

body[data-theme="minimal"] .btn-primary:hover {
    background: #1f2937 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

body[data-theme="minimal"] .input-group input[type="time"],
body[data-theme="minimal"] .input-group input[type="number"],
body[data-theme="minimal"] #origin-search input,
body[data-theme="minimal"] #destination-search input {
    border-color: #d1d5db !important;
    color: #111827;
    background: #ffffff;
}

body[data-theme="minimal"] .input-group input[type="time"]:focus,
body[data-theme="minimal"] .input-group input[type="number"]:focus,
body[data-theme="minimal"] #origin-search input:focus,
body[data-theme="minimal"] #destination-search input:focus {
    border-color: #6b7280 !important;
    box-shadow: 0 0 0 2px rgba(107, 114, 128, 0.15);
}

body[data-theme="minimal"] h1,
body[data-theme="minimal"] h2,
body[data-theme="minimal"] h3 {
    color: #111827;
}

body[data-theme="minimal"] .text-gray-600 {
    color: #6b7280;
}

/* Title: solid dark gray, no gradient */
body[data-theme="minimal"] #main-title.title-text {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #111827 !important;
    background-clip: unset !important;
    color: #111827 !important;
}

body[data-theme="minimal"] [style*="var(--dark-orange)"],
body[data-theme="minimal"] [style*="color: var(--dark-orange)"] {
    color: #111827 !important;
}

/* Dark mode */
body[data-theme="minimal"].dark-mode {
    background: #111827;
    color: #f9fafb;
}

body[data-theme="minimal"].dark-mode .card {
    background: #1f2937;
    border-color: #374151;
}

body[data-theme="minimal"].dark-mode .btn-primary {
    background: #f9fafb !important;
    color: #111827 !important;
}

body[data-theme="minimal"].dark-mode .btn-primary:hover {
    background: #e5e7eb !important;
}

body[data-theme="minimal"].dark-mode .input-group input[type="time"],
body[data-theme="minimal"].dark-mode .input-group input[type="number"],
body[data-theme="minimal"].dark-mode #origin-search input,
body[data-theme="minimal"].dark-mode #destination-search input {
    background: #1f2937;
    border-color: #4b5563;
    color: #f9fafb;
}

body[data-theme="minimal"].dark-mode #main-title.title-text {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #f9fafb !important;
    color: #f9fafb !important;
}
