.simple-booking-wrapper .appointment-date {
    position: relative;
}

.simple-booking-wrapper .appointment-date input[type="date"],
.simple-booking-wrapper .appointment-date input[type="datetime-local"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    background-color: #fff;
    cursor: pointer;
    box-sizing: border-box;
}

.simple-booking-wrapper .appointment-date .fme-date-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin: 0 0 12px;
    padding: 10px 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.4;
}

.simple-booking-wrapper .appointment-date .fme-date-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #334155;
}

.simple-booking-wrapper .appointment-date .fme-date-legend-dot {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    flex-shrink: 0;
}

.simple-booking-wrapper .appointment-date .fme-legend-available .fme-date-legend-dot {
    background: #f0fdf4;
    border: 2px solid #059669;
}

.simple-booking-wrapper .appointment-date .fme-legend-unavailable .fme-date-legend-dot {
    background: #f9fafb;
    border: 2px solid #9ca3af;
}

.accordion-section {
    border-bottom: 1px solid #ddd;
}

.accordion-section:last-child {
    border-bottom: none;
}

.accordion-header {
    background: #f8f9fa;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s;
    border-left: 4px solid #667eea;
    position: relative;
}

 /* .accordion-header:hover {
    background: #e9ecef;
} */

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s;
}

.accordion-header.active::after {
    transform: rotate(45deg);
}