/* Scrollable Date Field CSS */
.scrollable-date-field-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.pf-booking-days {
    display: flex;
    align-items: center;
    position: relative;
    background-color: transparent;
    border-radius: 8px;
    padding: 10px 0;
}

.pf-booking-days-track {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 15px;
    padding: 10px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    flex: 1;
}

.pf-booking-days-track::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.pf-booking-days-arrow {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 2;
    flex-shrink: 0;
}
.pf-booking-days-arrow:hover {
    background: #f9f9f9;
}
.pf-booking-days-arrow.left {
    margin-right: 10px;
}
.pf-booking-days-arrow.right {
    margin-left: 10px;
}

.date-btn {
    margin: 0;
    cursor: pointer;
    display: inline-block;
    flex-shrink: 0;
}

.date-btn input[type="radio"] {
    display: none; /* Hide original radio */
}

.date-btn-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid transparent;
    border-radius: 8px;
    width: 80px;
    height: 100px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    color: #333;
}

.date-btn:hover .date-btn-content {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.date-btn input[type="radio"]:checked + .date-btn-content {
    border-color: #d1b37b; /* Gold/brand color to match arrows in screenshot maybe */
    background-color: #fcfaf5;
    box-shadow: 0 0 0 1px #d1b37b;
}

.date-btn-content .day-month {
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    color: #666;
}

.date-btn-content .date-num {
    font-size: 28px;
    font-weight: 700;
    margin: 5px 0;
    color: #222;
}
