/* FPP Bookings — extras: fully-booked day state + legend */
.fppb-cal-day-full {
    background: var(--fpp-error-light, #fef2f2) !important;
    color: var(--fpp-error, #dc2626) !important;
    cursor: not-allowed !important;
    font-weight: 600;
    position: relative;
}
.fppb-cal-day-full:hover {
    background: var(--fpp-error-light, #fef2f2) !important;
    color: var(--fpp-error, #dc2626) !important;
    transform: none;
}
.fppb-cal-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 12px;
    padding: 8px 12px;
    font-size: 11px;
    color: var(--fpp-muted, #64748b);
    border-top: 1px solid var(--fpp-border, #e2e8f0);
}
.fppb-cal-legend-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.fppb-cal-legend-swatch {
    width: 12px;
    height: 12px;
    border-radius: 3px;
    flex-shrink: 0;
}
.fppb-cal-legend-swatch-available {
    background: var(--fpp-success-light, #f0fdf4);
    border: 1px solid var(--fpp-success, #16a34a);
}
.fppb-cal-legend-swatch-full {
    background: var(--fpp-error-light, #fef2f2);
    border: 1px solid var(--fpp-error, #dc2626);
}
