﻿.flatpickr-disabled,
.flatpickr-disabled:hover {
    background-color: #f8d7da; /* Light red background for disabled */
    border-color: #f5c6cb; /* Subtle border color */
    cursor: not-allowed;
    text-decoration: line-through !important;
    color: #721c24 !important; /* Dark red text for contrast */
    opacity: 0.65; /* Slight transparency for a disabled effect */
    box-shadow: none; /* Remove any shadow for a flat look */
    transition: background-color 0.3s ease, color 0.3s ease; /* Smooth transition for hover effects */
}

.flatpickr-day.booked::after {
    content: "booked";
    position: absolute;
    font-size: 10px;
    bottom: 10px;
    right: 2px;
    color: #aaa;
    pointer-events: none;
}
/* Add extra padding at bottom of calendar */
.flatpickr-calendar {
    padding-bottom: 8px;
}

    .flatpickr-calendar.open {
        display: inline-block;
        z-index: 1000;
    }
