/*
 * jquery.datetimepicker assigns `xdsoft_today` to today's calendar cell
 * unconditionally, even when that same cell is also `xdsoft_disabled`
 * (booked by another inventory of the same vehicle, or otherwise
 * unavailable). Without this override, today's date can look highlighted
 * and selectable even when it can't actually be booked.
 *
 * Scoped to the combined class so a normal available "today" keeps its
 * usual highlight, and disabled dates that aren't today are untouched.
 */
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today.xdsoft_disabled {
    color: #999 !important;
    background: #e8e8e8 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_today.xdsoft_disabled:hover {
    color: #999 !important;
    background: #e8e8e8 !important;
    box-shadow: none !important;
}
