:root {
    --wrc-navy: #183153;
    --wrc-sand: #efe4d2;
    --wrc-accent: #bf5b04;
    --wrc-ink: #253348;
}

body {
    color: var(--wrc-ink);
}

.app-navbar {
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.15), transparent 35%),
        linear-gradient(135deg, #10233a, #21466e 60%, #b55503 150%);
}

.hero-panel {
    color: white;
    border-radius: 1.5rem;
    background:
        linear-gradient(120deg, rgba(10, 22, 37, 0.85), rgba(21, 53, 88, 0.82)),
        linear-gradient(45deg, rgba(191, 91, 4, 0.6), transparent);
    box-shadow: 0 1rem 3rem rgba(16, 35, 58, 0.16);
}

.dashboard-card,
.card {
    border-radius: 1rem;
}

.car-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.car-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 1rem 2.5rem rgba(16, 35, 58, 0.12);
}

.car-list-photo {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
}

.car-photo-preview {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
}

.empty-state {
    border: 1px dashed rgba(24, 49, 83, 0.16);
    border-radius: 1rem;
    background: linear-gradient(180deg, rgba(239, 228, 210, 0.2), rgba(255, 255, 255, 0.9));
}

#booking-calendar {
    min-height: 520px;
}

.fc .fc-toolbar-title {
    font-size: 1.1rem;
}

.fc-car-event {
    white-space: normal;
    line-height: 1.2;
}

@media (max-width: 991.98px) {
    .hero-panel {
        border-radius: 1rem;
    }
}
