html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}
header {
    background-color: #1fab64;
}
.outer-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}
.disabled {
    background-color: lightgray;
    color: red;
    text-decoration:
        line-through;
}
.recap {
    grid-template-columns: 25% 1fr;
}
.time-slot {
    display: inline-block;
    padding: 8px 12px;
    margin: 5px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    background-color: #f9fafb;
}
.time-slot.selected {
    background-color: #10b981;
    color: white;
}
.time-slot.disabled {
    background-color: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}
.booking-recap {
    background-color: #f3f4f6;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}
.hidden {
    display: none;
}
/* Flatpickr custom styles */
.flatpickr-day.disabled {
    color: #ccc;
}
.flatpickr-day.flatpickr-disabled {
    color: #ccc;
}
.flatpickr-day.available {
    background-color: #e6fff2;
    border-color: #10b981;
}
.flatpickr-day.today {
    border-color: #10b981;
}
.flatpickr-day.selected {
    background-color: #10b981;
    border-color: #10b981;
}
.date-input-container {
    position: relative;
}
.date-input-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    pointer-events: none;
}