.custom-booking-date-picker {
    margin: 20px 0;
}
    
.custom-booking-date-picker label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
    
.selected-date-display {
    padding: 10px;
    border: 2px solid #ddd;
    border-radius: 4px;
    background: #f9f9f9;
    margin-bottom: 15px;
    font-weight: bold;
    color: #666;
}
    
.selected-date-display.has-date {
    border-color: #2e7d32;
    background: #e8f5e8;
    color: #2e7d32;
}
    
.date-picker-calendar {
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 15px;
    background: white;
    max-width: 400px;
}
    
.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
    
.calendar-nav {
    background: #f0f0f0;
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
}

.calendar-nav:hover {
    background: #e0e0e0;
}

.calendar-month-year {
    font-weight: bold;
    font-size: 1rem;
}
    
.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.calendar-day {
    padding: 10px;
    text-align: center;
    cursor: pointer;
    border-radius: 4px;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}
    
.calendar-day.available {
    background: #e8f5e8;
    color: #2e7d32;
    border: 1px solid transparent;
}
    
.calendar-day.available:hover {
    background: #c8e6c9;
    border-color: #2e7d32;
}

.calendar-day.unavailable {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}
    
.calendar-day.past {
    background: #f5f5f5;
    color: #999;
    cursor: not-allowed;
}
    
.calendar-day.other-month {
    color: #ccc;
    cursor: not-allowed;
}
    
.calendar-day.selected {
    background: #2e7d32 !important;
    color: white !important;
    font-weight: bold;
}
    
.calendar-weekday {
    white-space: nowrap;
    font-weight: bold;
    text-align: center;
    padding: 4px;
    background: #f5f5f5;
    color: #666;
}