/* Taxineu Theme */

:root {
    --taxi-yellow: #ffc107;
    --taxi-dark: #212529;
}

[data-bs-theme="light"] body,
:root:not([data-bs-theme="dark"]) body {
    background-color: #f7f8fa !important;
}

body {
    font-family: 'Segoe UI', system-ui, sans-serif;
}

.navbar-brand {
    font-size: 1.4rem;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Cards */
.card {
    transition: box-shadow 0.2s ease;
}

[data-bs-theme="light"] .card,
:root:not([data-bs-theme="dark"]) .card {
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07) !important;
}

