/* Migrated from 0.BookingIndexLarge.razor.css — all rules currently commented out. */

/*.booking-large-root {
    padding: 2rem 1.5rem 3rem;
    display: grid;
    gap: 2rem;
    background: linear-gradient(180deg, rgba(248, 249, 255, 0.9), rgba(255, 255, 255, 0.95));
    border-radius: 32px;
}

.page-header {
    text-align: left;
}

.page-heading {
    font-weight: 700;
    margin-bottom: 0.25rem;

}

.page-subheading {
    color: var(--mud-palette-text-secondary);
}

.calendar-shell {
    position: relative;
    padding: 2rem;
    border-radius: 28px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: var(--mud-palette-background-grey);
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.08);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.calendar-title {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0.25rem;
}

.calendar-caption {
    color: var(--mud-palette-text-secondary);
    letter-spacing: 0.02em;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--mud-palette-text-secondary);
}

.weekday {
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.75rem;
}

.calendar-cell {
    position: relative;
    border: none;
    border-radius: 18px;
    padding: 1.1rem 0.75rem;
    background: var(--mud-palette-surface);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.06);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
    color: var(--mud-palette-text-primary);
    cursor: pointer;
}

.calendar-cell:hover:not(:disabled) {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(37, 99, 235, 0.18);
}

.calendar-cell:disabled {
    cursor: default;
}

.calendar-cell--muted {
    opacity: 0.35;
}

.calendar-cell--today {
    box-shadow: inset 0 0 0 2px rgba(59, 130, 246, 0.6);
}

.calendar-cell--selected {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(59, 130, 246, 0.05));
    box-shadow: inset 0 0 0 2px rgba(59, 130, 246, 0.45);
}

.calendar-cell--booked {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.16), rgba(34, 197, 94, 0.08));
    box-shadow: inset 0 0 0 2px rgba(34, 197, 94, 0.4);
}

.calendar-cell--menu {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.16), rgba(59, 130, 246, 0.08));
}

.calendar-cell--menu-locked {
    background: linear-gradient(135deg, rgba(148, 163, 184, 0.14), rgba(148, 163, 184, 0.08));
}

.calendar-cell--disabled {
    opacity: 0.45;
}

.day-number {
    font-size: 1.125rem;
    font-weight: 600;
}

.status-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    right: 0.85rem;
    top: 0.8rem;
}

.status-dot.booked {
    background: #22c55e;
}

.status-dot.menu {
    background: #3b82f6;
}

.status-tag {
    position: absolute;
    bottom: 0.7rem;
    right: 0.75rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.1);
    font-size: 0.65rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.calendar-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 1.75rem;
    font-size: 0.85rem;
    color: var(--mud-palette-text-secondary);
}

.legend-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin-right: 0.4rem;
    vertical-align: middle;
}

.legend-dot.booked {
    background: #22c55e;
}

.legend-dot.menu {
    background: #3b82f6;
}

.legend-dot.today {
    background: #f59e0b;
}

.selection-panel {
    padding: 1.5rem 1.75rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.08);
    max-width: 420px;
}

.selection-title {
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 0.5rem;
}

.selection-info {
    color: var(--mud-palette-text-secondary);
}

@media (max-width: 1024px) {
    .booking-large-root {
        padding: 1.5rem 1rem 2.5rem;
    }

    .calendar-grid {
        gap: 0.5rem;
    }

    .calendar-shell {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .calendar-shell {
        padding: 1.25rem;
    }

    .calendar-cell {
        padding: 0.85rem 0.65rem;
    }

    .calendar-legend {
        flex-direction: column;
        gap: 0.75rem;
    }
}


*/
