/* Custom Flatpickr styling for blocked dates */
.flatpickr-day.flatpickr-disabled {
    color: #ccc !important;
    cursor: not-allowed !important;
    position: relative;
}

.flatpickr-day.flatpickr-disabled:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border: 2px solid #ff4444;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
}

.flatpickr-day.flatpickr-disabled:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: #ff4444;
    transform: translate(-50%, -50%) rotate(45deg);
}