body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
}
.step {
    display: none;
}
.step.active {
    display: block;
}
.step-indicator {
    border-bottom: 4px solid transparent;
    transition: all 0.3s ease;
}
.step-indicator.active {
    border-bottom-color: #2563eb; /* blue-600 */
    color: #2563eb;
}
.step-indicator.completed {
    color: #2563eb;
    cursor: pointer;
}
.van-card.selected {
    border-color: #2563eb;
    box-shadow: 0 0 0 2px #2563eb;
}

/* --- CALENDAR STYLES --- */
.flatpickr-day.booked-day {
    background-color: #fecaca; /* red-200 */
    color: #991b1b; /* red-800 */
    cursor: not-allowed !important;
    border-color: #fca5a5; /* red-300 */
}
.flatpickr-day.available-day {
    background-color: #dcfce7; /* green-200 */
    border-color: #bbf7d0; /* green-300 */
}
.flatpickr-day.booked-day:hover,
.flatpickr-day.available-day:hover {
    background-color: #e5e7eb; /* gray-200 */
}
/* --- END CALENDAR STYLES --- */

.flatpickr-day.selected, .flatpickr-day.start-date, .flatpickr-day.end-date {
    background: #2563eb !important;
    border-color: #2563eb !important;
    color: #fff !important;
}
.flatpickr-day.in-range {
    background: #dbeafe;
    border-color: #dbeafe;
    box-shadow: none;
}
.add-accessory-btn.added {
    background-color: #16a34a; /* green-600 */
    color: white;
}
label {
    @apply block text-sm font-medium text-gray-700;
}
details > summary {
    list-style: none;
}
details > summary::-webkit-details-marker {
    display: none;
}
button:disabled {
    @apply bg-gray-400 cursor-not-allowed;
}
#card-element {
    border: 1px solid #d1d5db;
    padding: 10px 12px;
    border-radius: 0.375rem;
    background-color: white;
}
#notification-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}
.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    text-align: center;
    max-width: 90%;
    width: 400px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}
