/* Calendar Day Styles */
.day-cell {
    color: #333;
}

.day-cell.available:hover {
    border-color: #000;
}

.day-cell.selected {
    background: #000;
    color: white;
    border-color: #000;
}

.day-cell.selected:hover {
    border-color: #333;
}

/* Make disabled dates darker grey */
.day-cell:not(.available):not(.empty) {
    background: #e0e0e0;
    color: #666;
    border-color: #e0e0e0;
}

/* Period Button Styles */
.period-btn.has-slots:hover {
    border-color: #000;
}

.period-btn.selected {
    background: #000;
    color: white;
    opacity: 1;
}

.period-btn.selected:hover {
    border-color: #333;
}

.period-btn:not(.has-slots) {
    background: #e0e0e0;
    color: #666;
    border-color: #e0e0e0;
}

/* Time Slot Button Styles */
.time-slot-btn:hover {
    border-color: #000;
}

.time-slot-btn.selected {
    background: #000;
    color: white;
    border-color: #000;
}

.time-slot-btn.selected:hover {
    border-color: #333;
}

.time-slot-btn.booked {
    background: #e0e0e0;
    color: #666;
    border-color: #e0e0e0;
}

/* Submit Button */
.submit-btn {
    background: #000;
    color: white;
}

.submit-btn:hover {
    background: #333;
}

/* Hide debug section by default */
.debug-section {
    display: none !important;
} 