/* /Components/Calendar/AppointmentModal.razor.rz.scp.css */
/* ── Backdrop ─────────────────────────────────────────────────────────── */

.appt-dialog-backdrop[b-84u8j1ej4k] {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.52);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 200;
    animation: appt-fade-in-b-84u8j1ej4k 180ms ease forwards;
}

/* ── Card ─────────────────────────────────────────────────────────────── */

.appt-dialog[b-84u8j1ej4k] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 201;
    width: min(480px, calc(100vw - 1.5rem));
    background: #ffffff;
    border-radius: 1.35rem;
    box-shadow:
        0 2px 8px rgba(15, 23, 42, 0.06),
        0 16px 48px rgba(15, 23, 42, 0.18),
        0 40px 80px rgba(15, 23, 42, 0.12);
    overflow: hidden;
    animation: appt-slide-up-b-84u8j1ej4k 240ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

/* ── Coloured accent bar ──────────────────────────────────────────────── */

.appt-dialog__accent[b-84u8j1ej4k] {
    height: 5px;
    width: 100%;
    transition: background-color 180ms ease;
}

/* ── Close button ────────────────────────────────────────────────────── */

.appt-dialog__close[b-84u8j1ej4k] {
    position: absolute;
    top: 1.1rem;
    right: 1.1rem;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 150ms, color 150ms;
    z-index: 1;
    padding: 0;
}

.appt-dialog__close:hover[b-84u8j1ej4k] {
    background: #e2e8f0;
    color: #0f172a;
}

.appt-dialog__close:focus-visible[b-84u8j1ej4k] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* ── Header ──────────────────────────────────────────────────────────── */

.appt-dialog__header[b-84u8j1ej4k] {
    padding: 1.5rem 3.25rem 0 1.5rem;
}

.appt-dialog__title[b-84u8j1ej4k] {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.025em;
    line-height: 1.2;
}

.appt-dialog__subtitle[b-84u8j1ej4k] {
    margin: 0.25rem 0 0;
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.01em;
}

/* ── Form layout ──────────────────────────────────────────────────────── */

.appt-dialog__form[b-84u8j1ej4k] {
    padding: 1.25rem 1.5rem 1.5rem;
    display: grid;
    gap: 1.1rem;
}

.appt-dialog__field[b-84u8j1ej4k] {
    display: grid;
    gap: 0.35rem;
}

/* ── Labels ──────────────────────────────────────────────────────────── */

.appt-dialog__label[b-84u8j1ej4k] {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #475569;
}

.appt-dialog__label-optional[b-84u8j1ej4k] {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: #94a3b8;
}

/* ── Inputs ──────────────────────────────────────────────────────────── */

.appt-dialog__input[b-84u8j1ej4k] {
    width: 100%;
    padding: 0.6rem 0.8rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 0.6rem;
    font-size: 0.88rem;
    color: #0f172a;
    background: #f8fafc;
    transition: border-color 150ms, box-shadow 150ms, background 150ms;
    outline: none;
    box-sizing: border-box;
    font-family: inherit;
}

.appt-dialog__input--textarea[b-84u8j1ej4k] {
    resize: vertical;
    min-height: 5rem;
    line-height: 1.5;
}

.appt-dialog__input:focus[b-84u8j1ej4k] {
    border-color: #3b82f6;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
}

.appt-dialog__input:disabled[b-84u8j1ej4k] {
    opacity: 0.42;
    cursor: not-allowed;
    background: #f1f5f9;
}

.appt-dialog__error[b-84u8j1ej4k] {
    font-size: 0.73rem;
    color: #ef4444;
    font-weight: 600;
}

/* ── Two-column row ──────────────────────────────────────────────────── */

.appt-dialog__row[b-84u8j1ej4k] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    transition: opacity 200ms;
}

.appt-dialog__row--disabled[b-84u8j1ej4k] {
    opacity: 0.42;
    pointer-events: none;
}

/* ── Toggle switch ───────────────────────────────────────────────────── */

.appt-dialog__toggle-row[b-84u8j1ej4k] {
    display: flex;
}

.appt-dialog__toggle-label[b-84u8j1ej4k] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    cursor: pointer;
    user-select: none;
    position: relative;
}

.appt-dialog__toggle-input[b-84u8j1ej4k] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
}

.appt-dialog__toggle-track[b-84u8j1ej4k] {
    position: relative;
    width: 2.5rem;
    height: 1.4rem;
    border-radius: 999px;
    background: #cbd5e1;
    transition: background 200ms;
    flex-shrink: 0;
}

.appt-dialog__toggle-input:checked + .appt-dialog__toggle-track[b-84u8j1ej4k] {
    background: #3b82f6;
}

.appt-dialog__toggle-thumb[b-84u8j1ej4k] {
    position: absolute;
    top: 3px;
    left: 3px;
    width: calc(1.4rem - 6px);
    height: calc(1.4rem - 6px);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.22);
    transition: transform 220ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.appt-dialog__toggle-input:checked + .appt-dialog__toggle-track .appt-dialog__toggle-thumb[b-84u8j1ej4k] {
    transform: translateX(1.1rem);
}

.appt-dialog__toggle-label:focus-within .appt-dialog__toggle-track[b-84u8j1ej4k] {
    outline: 2px solid rgba(59, 130, 246, 0.45);
    outline-offset: 2px;
}

.appt-dialog__toggle-text[b-84u8j1ej4k] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

/* ── Colour swatches ─────────────────────────────────────────────────── */

.appt-dialog__swatches[b-84u8j1ej4k] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    align-items: center;
}

.appt-dialog__swatch[b-84u8j1ej4k] {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 50%;
    border: 2.5px solid transparent;
    cursor: pointer;
    transition: transform 140ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 140ms, outline-color 140ms;
    padding: 0;
    flex-shrink: 0;
    outline: 2.5px solid transparent;
    outline-offset: 2px;
}

.appt-dialog__swatch:hover[b-84u8j1ej4k] {
    transform: scale(1.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.appt-dialog__swatch--active[b-84u8j1ej4k] {
    outline-color: #334155;
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.appt-dialog__swatch--custom[b-84u8j1ej4k] {
    background: #f1f5f9;
    border: 1.5px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.appt-dialog__swatch--custom:hover[b-84u8j1ej4k] {
    background: #e8edf5;
    border-color: #cbd5e1;
    color: #334155;
}

.appt-dialog__colour-picker[b-84u8j1ej4k] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    border: none;
    padding: 0;
}

/* ── Footer ──────────────────────────────────────────────────────────── */

.appt-dialog__footer[b-84u8j1ej4k] {
    display: flex;
    gap: 0.65rem;
    justify-content: flex-end;
    padding-top: 0.15rem;
}

.appt-dialog__btn[b-84u8j1ej4k] {
    padding: 0.65rem 1.4rem;
    border-radius: 0.65rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 120ms, box-shadow 120ms, filter 120ms, background 150ms;
    border: none;
    letter-spacing: 0.01em;
    font-family: inherit;
}

.appt-dialog__btn:active[b-84u8j1ej4k] {
    transform: scale(0.97) !important;
}

.appt-dialog__btn--cancel[b-84u8j1ej4k] {
    background: #f1f5f9;
    color: #475569;
}

.appt-dialog__btn--cancel:hover[b-84u8j1ej4k] {
    background: #e2e8f0;
    color: #0f172a;
}

.appt-dialog__btn--cancel:focus-visible[b-84u8j1ej4k] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

.appt-dialog__btn--save[b-84u8j1ej4k] {
    background-color: var(--save-colour, #3b82f6);
    color: #fff;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
    transition: transform 120ms, box-shadow 120ms, filter 120ms, background-color 180ms;
}

.appt-dialog__btn--save:hover[b-84u8j1ej4k] {
    filter: brightness(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

.appt-dialog__btn--delete[b-84u8j1ej4k] {
    background: #fee2e2;
    color: #dc2626;
    margin-right: auto;
}

.appt-dialog__btn--delete:hover[b-84u8j1ej4k] {
    background: #fecaca;
    color: #b91c1c;
}

.appt-dialog__btn--delete:focus-visible[b-84u8j1ej4k] {
    outline: 2px solid #ef4444;
    outline-offset: 2px;
}

@keyframes appt-fade-in-b-84u8j1ej4k {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes appt-slide-up-b-84u8j1ej4k {
    from {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 20px));
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* ── Responsive ──────────────────────────────────────────────────────── */

@media (max-width: 480px) {
    .appt-dialog__row[b-84u8j1ej4k] {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }

    .appt-dialog__footer[b-84u8j1ej4k] {
        flex-direction: column-reverse;
    }

    .appt-dialog__btn[b-84u8j1ej4k] {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }
}
/* /Components/Calendar/AppointmentTooltip.razor.rz.scp.css */
/* ── Tooltip card ─────────────────────────────────────────────────────── */

.appt-tooltip[b-3a7jd0rypr] {
    position: fixed;
    z-index: 100;
    display: flex;
    align-items: stretch;
    width: 14rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(203, 213, 225, 0.85);
    box-shadow:
        0 2px 4px -1px rgba(15, 23, 42, 0.06),
        0 10px 24px -4px rgba(15, 23, 42, 0.14),
        0 0 0 1px rgba(15, 23, 42, 0.03);
    backdrop-filter: blur(14px) saturate(1.6);
    -webkit-backdrop-filter: blur(14px) saturate(1.6);
    pointer-events: none;
    overflow: hidden;
    transform: translateY(-50%);
    animation: appt-tooltip-in-b-3a7jd0rypr 160ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ── Colour accent strip ──────────────────────────────────────────────── */

.appt-tooltip__accent[b-3a7jd0rypr] {
    width: 3.5px;
    flex-shrink: 0;
    background-color: var(--accent-colour, #3b82f6);
}

/* ── Body ─────────────────────────────────────────────────────────────── */

.appt-tooltip__body[b-3a7jd0rypr] {
    padding: 0.55rem 0.7rem;
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
}

.appt-tooltip__title[b-3a7jd0rypr] {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: #0f172a;
    letter-spacing: -0.015em;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.appt-tooltip__notes[b-3a7jd0rypr] {
    margin: 0;
    font-size: 0.695rem;
    font-weight: 400;
    color: #475569;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.appt-tooltip__dates[b-3a7jd0rypr],
.appt-tooltip__time[b-3a7jd0rypr] {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.32rem;
    font-size: 0.695rem;
    font-weight: 400;
    color: #64748b;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: 0.005em;
}

.appt-tooltip__icon[b-3a7jd0rypr] {
    width: 0.75rem;
    height: 0.75rem;
    flex-shrink: 0;
    color: #94a3b8;
}

/* ── Entrance animation ───────────────────────────────────────────────── */

@keyframes appt-tooltip-in-b-3a7jd0rypr {
    from {
        opacity: 0;
        transform: translateY(calc(-50% - 5px)) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
}

@media (prefers-reduced-motion: reduce) {
    .appt-tooltip[b-3a7jd0rypr] {
        animation: none;
        transform: translateY(-50%);
    }
}
/* /Components/Calendar/YearCalendar.razor.rz.scp.css */
.year-calendar__header[b-lt4o4gb85b] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.year-calendar__nav-btn[b-lt4o4gb85b] {
    appearance: none;
    border: none;
    border-radius: 999px;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.18);
    transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
    flex-shrink: 0;
}

.year-calendar__nav-btn:hover[b-lt4o4gb85b] {
    transform: translateY(-1px);
    filter: brightness(1.1);
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.22);
}

.year-calendar__nav-btn:focus-visible[b-lt4o4gb85b] {
    outline: 3px solid rgba(59, 130, 246, 0.35);
    outline-offset: 3px;
}

.year-calendar[b-lt4o4gb85b] {
    display: grid;
    gap: 1rem;
    overflow-x: auto;
}

.year-calendar__title[b-lt4o4gb85b] {
    margin: 0;
    font-family: var(--font-display, 'Playfair Display', Georgia, serif);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--pp-ink, #0f172a);
    letter-spacing: -0.02em;
}

.year-calendar__mobile[b-lt4o4gb85b] {
    display: none;
}

.year-calendar__mobile-toolbar[b-lt4o4gb85b] {
    display: none;
}

.year-calendar__mobile-toggle[b-lt4o4gb85b] {
    appearance: none;
    border: none;
    border-radius: 999px;
    padding: 0.8rem 1.1rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
    transition: transform 150ms ease, box-shadow 150ms ease, filter 150ms ease;
}

.year-calendar__mobile-toggle:hover[b-lt4o4gb85b] {
    transform: translateY(-1px);
    filter: brightness(1.03);
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.2);
}

.year-calendar__mobile-toggle:focus-visible[b-lt4o4gb85b] {
    outline: 3px solid rgba(59, 130, 246, 0.35);
    outline-offset: 3px;
}

.year-calendar__table[b-lt4o4gb85b] {
    width: 100%;
    min-width: 74rem;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
    font-size: 0.78rem;
    border: 1px solid #dbe3ee;
    border-radius: 1rem;
    background: #ffffff;
    box-shadow: 0 4px 24px rgba(18, 33, 59, 0.1), 0 1px 4px rgba(18, 33, 59, 0.06);
    overflow: hidden;
}

.year-calendar__table th:not(.year-calendar__month-name)[b-lt4o4gb85b],
.year-calendar__table td[b-lt4o4gb85b] {
    padding: 0;
}

.year-calendar__corner[b-lt4o4gb85b],
.year-calendar__month-name[b-lt4o4gb85b] {
    position: sticky;
    left: 0;
    z-index: 1;
    width: 5.5rem;
    min-width: 5.5rem;
    max-width: 5.5rem;
    text-align: left;
    white-space: nowrap;
    background-color: #fff;
}

.year-calendar__corner[b-lt4o4gb85b] {
    top: 0;
    z-index: 3;
    background: linear-gradient(180deg, #12213b 0%, #1e2f4d 100%);
    border-bottom: 2px solid rgba(201, 164, 82, 0.6);
    border-right: 1px solid #2d3f5c;
}

.year-calendar__weekday[b-lt4o4gb85b] {
    height: 1.75rem;
    font-weight: 700;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    background: linear-gradient(180deg, #12213b 0%, #1e2f4d 100%);
    border-bottom: 2px solid rgba(201, 164, 82, 0.6);
    border-right: 1px solid #2d3f5c;
    letter-spacing: 0.04em;
    font-size: 0.68rem;
    text-transform: uppercase;
}

.year-calendar__weekday--week-start[b-lt4o4gb85b] {
    border-left: 2px solid #0c1929;
}

.year-calendar__weekday--weekend[b-lt4o4gb85b] {
    color: rgba(201, 164, 82, 0.85);
    background: linear-gradient(180deg, #0f1d35 0%, #192a47 100%);
}

.year-calendar__month-name[b-lt4o4gb85b] {
    padding: 0 0.5rem 0 1rem;
    font-family: var(--font-display, 'Playfair Display', Georgia, serif);
    font-size: 0.72rem;
    font-weight: 700;
    font-style: italic;
    color: var(--pp-ink, #12213b);
    border-right: 2px solid #e2e8f0;
    border-bottom: 1px solid #e8ecf2;
    background: linear-gradient(to right, #f4f6fb 0%, #f8fafc 100%);
    letter-spacing: 0.01em;
    transition: background 150ms;
}

.year-calendar__month-row:hover .year-calendar__month-name[b-lt4o4gb85b] {
    background: linear-gradient(to right, #eef2ff 0%, #f4f6fb 100%);
    color: #0c1929;
}

.year-calendar__day[b-lt4o4gb85b] {
    width: 1.6rem;
    min-width: 1.6rem;
    height: 1.85rem;
    border-right: 1px solid #eaecf2;
    border-bottom: 1px solid #eaecf2;
    background: #ffffff;
    text-align: right;
    vertical-align: top;
    color: #1e293b;
    font-variant-numeric: tabular-nums;
    transition: background 120ms;
}

.year-calendar__day--week-start[b-lt4o4gb85b] {
    border-left: 2px solid #d1d9e8;
}

.year-calendar__day--weekend:not(.year-calendar__day--outside)[b-lt4o4gb85b] {
    background: #fafaf7;
}

.year-calendar__day--outside[b-lt4o4gb85b] {
    background: #f5f6f8;
    color: transparent;
}

.year-calendar__day--today[b-lt4o4gb85b] {
    background: linear-gradient(180deg, #fffcf0 0%, #fff9e6 100%) !important;
    border-bottom: 2px solid var(--pp-gold, #C9A452) !important;
    border-right-color: rgba(201, 164, 82, 0.35) !important;
}

.year-calendar__day--today time[b-lt4o4gb85b] {
    color: var(--pp-ink, #12213b) !important;
    font-weight: 800;
    font-size: 0.82rem;
}

.year-calendar__day time[b-lt4o4gb85b] {
    line-height: 1;
    display: inline-block;
    min-width: 100%;
    padding-right: 0.25rem;
    padding-top: 0.18rem;
}

/* ── Day button (desktop) ────────────────────────────────────────────── */

.year-calendar__day-inner[b-lt4o4gb85b] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    height: 100%;
}

.year-calendar__day-btn[b-lt4o4gb85b] {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    color: inherit;
    font: inherit;
    text-align: right;
    flex: 0 0 auto;
}

.year-calendar__day-btn:hover[b-lt4o4gb85b] {
    background: rgba(201, 164, 82, 0.08);
}

.year-calendar__day-btn:focus-visible[b-lt4o4gb85b] {
    outline: 2px solid rgba(201, 164, 82, 0.6);
    outline-offset: -2px;
}

.year-calendar__day-btn time[b-lt4o4gb85b] {
    line-height: 1;
    display: block;
    padding-right: 0.25rem;
    padding-top: 0.18rem;
}

/* ── Appointment trigger wrapper ─────────────────────────────────────── */

.year-calendar__appt-trigger[b-lt4o4gb85b] {
    display: block;
    padding: 2px 0;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    font: inherit;
}

/* ── Appointment placeholder (desktop) ──────────────────────────────── */

.year-calendar__appt-trigger--placeholder[b-lt4o4gb85b] {
    pointer-events: none;
}

.year-calendar__appt-trigger--placeholder .year-calendar__bar[b-lt4o4gb85b] {
    visibility: hidden;
}

/* ── Appointment bars (desktop) ──────────────────────────────────────── */

.year-calendar__bar[b-lt4o4gb85b] {
    display: block;
    height: 3px;
    width: 100%;
    margin-top: 1px;
}

.year-calendar__bar--single[b-lt4o4gb85b] {
    border-radius: 999px;
}

.year-calendar__bar--start[b-lt4o4gb85b] {
    border-radius: 999px 0 0 999px;
}

.year-calendar__bar--end[b-lt4o4gb85b] {
    border-radius: 0 999px 999px 0;
}

.year-calendar__bar--middle[b-lt4o4gb85b] {
    border-radius: 0;
}

.year-calendar__month-row:nth-child(even) .year-calendar__day:not(.year-calendar__day--outside):not(.year-calendar__day--today)[b-lt4o4gb85b] {
    background: #fafbfd;
}

.year-calendar__month-row:nth-child(even) .year-calendar__day--weekend:not(.year-calendar__day--outside):not(.year-calendar__day--today)[b-lt4o4gb85b] {
    background: #f7f8f5;
}

@media (max-width: 1024px) {
    .year-calendar[b-lt4o4gb85b] {
        gap: 1.25rem;
        overflow-x: visible;
    }

    .year-calendar__table[b-lt4o4gb85b] {
        display: none;
    }

    .year-calendar__mobile[b-lt4o4gb85b] {
        display: grid;
        gap: 1rem;
    }

    .year-calendar__mobile-toolbar[b-lt4o4gb85b] {
        display: flex;
        justify-content: flex-start;
    }

    .year-calendar__mobile-month[b-lt4o4gb85b] {
        display: grid;
        gap: 0.75rem;
        padding: 1rem;
        border: 1px solid #e7eaf0;
        border-radius: 1rem;
        background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
        box-shadow: 0 4px 16px rgba(18, 33, 59, 0.08);
    }

    .year-calendar__mobile-month-title[b-lt4o4gb85b] {
        margin: 0;
        font-family: var(--font-display, 'Playfair Display', Georgia, serif);
        font-size: 1rem;
        font-weight: 700;
        font-style: italic;
        color: var(--pp-ink, #0f172a);
    }

    .year-calendar__mobile-weekdays[b-lt4o4gb85b],
    .year-calendar__mobile-grid[b-lt4o4gb85b] {
        display: grid;
        grid-template-columns: repeat(7, minmax(0, 1fr));
        gap: 0.4rem;
    }

    .year-calendar__mobile-weekday[b-lt4o4gb85b] {
        font-size: 0.75rem;
        font-weight: 600;
        text-align: center;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .year-calendar__mobile-day[b-lt4o4gb85b] {
        width: auto;
        min-width: 0;
        height: auto;
        min-height: 2.75rem;
        border: 1px solid #dbe3ee;
        border-radius: 0.85rem;
        background-color: #fff;
        text-align: center;
        vertical-align: middle;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.2rem;
        padding: 0.25rem 0;
    }

    .year-calendar__mobile-day.year-calendar__day--week-start[b-lt4o4gb85b] {
        border-left-width: 1px;
    }

    .year-calendar__mobile-day time[b-lt4o4gb85b] {
        min-width: auto;
        padding-right: 0;
        line-height: 1.6;
        font-size: 0.95rem;
        font-weight: 600;
        color: #0f172a;
    }

    .year-calendar__mobile-day.year-calendar__day--outside[b-lt4o4gb85b] {
        border-color: transparent;
        background-color: transparent;
        box-shadow: none;
    }

    /* Mobile day button */
    .year-calendar__mobile-day-btn[b-lt4o4gb85b] {
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
        font: inherit;
        color: inherit;
        line-height: 1.6;
    }

    .year-calendar__mobile-day-btn:focus-visible[b-lt4o4gb85b] {
        outline: 2px solid rgba(59, 130, 246, 0.6);
        outline-offset: 1px;
        border-radius: 4px;
    }

    /* Appointment dots (mobile) */
    .year-calendar__mobile-dots[b-lt4o4gb85b] {
        display: flex;
        gap: 2px;
        justify-content: center;
    }

    .year-calendar__mobile-dot[b-lt4o4gb85b] {
        display: block;
        width: 5px;
        height: 5px;
        border-radius: 50%;
    }
}

@media (max-width: 640px) {
    .year-calendar__title[b-lt4o4gb85b] {
        font-size: 1.5rem;
    }

    .year-calendar__mobile[b-lt4o4gb85b] {
        gap: 0.85rem;
    }

    .year-calendar__mobile-toolbar[b-lt4o4gb85b] {
        justify-content: stretch;
    }

    .year-calendar__mobile-toggle[b-lt4o4gb85b] {
        width: 100%;
        text-align: center;
        padding: 0.78rem 1rem;
    }

    .year-calendar__mobile-month[b-lt4o4gb85b] {
        padding: 0.85rem;
        border-radius: 0.9rem;
    }

    .year-calendar__mobile-weekdays[b-lt4o4gb85b],
    .year-calendar__mobile-grid[b-lt4o4gb85b] {
        gap: 0.3rem;
    }

    .year-calendar__mobile-weekday[b-lt4o4gb85b] {
        font-size: 0.68rem;
    }

    .year-calendar__mobile-day[b-lt4o4gb85b] {
        min-height: 2.35rem;
        border-radius: 0.7rem;
    }

    .year-calendar__mobile-day time[b-lt4o4gb85b] {
        line-height: 1.6;
        font-size: 0.85rem;
    }
}

/* ── Search ───────────────────────────────────────────────────────────── */

.year-calendar__search[b-lt4o4gb85b] {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: auto;
}

.year-calendar__search-label[b-lt4o4gb85b] {
    position: absolute;
    left: 0.65rem;
    pointer-events: none;
    display: flex;
    align-items: center;
    color: #94a3b8;
    width: 1rem;
    height: 1rem;
}

.year-calendar__search-icon[b-lt4o4gb85b] {
    width: 1rem;
    height: 1rem;
}

.year-calendar__search-input[b-lt4o4gb85b] {
    appearance: none;
    border: 1.5px solid #d1d9e8;
    border-radius: 999px;
    background: #f8fafc;
    color: #0f172a;
    font-size: 0.8rem;
    font-family: inherit;
    padding: 0.42rem 2.2rem 0.42rem 2.1rem;
    outline: none;
    width: 12rem;
    transition: background 150ms, border-color 150ms, box-shadow 150ms, width 250ms ease;
}

.year-calendar__search-input[b-lt4o4gb85b]::placeholder {
    color: #94a3b8;
}

.year-calendar__search-input:focus[b-lt4o4gb85b] {
    background: #fff;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
    width: 16rem;
}

/* Remove native clear button from search inputs */
.year-calendar__search-input[b-lt4o4gb85b]::-webkit-search-cancel-button,
.year-calendar__search-input[b-lt4o4gb85b]::-webkit-search-decoration {
    -webkit-appearance: none;
}

.year-calendar__search-clear[b-lt4o4gb85b] {
    position: absolute;
    right: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    padding: 0.2rem;
    border-radius: 50%;
    transition: color 120ms, background 120ms;
    width: 1.25rem;
    height: 1.25rem;
}

.year-calendar__search-clear svg[b-lt4o4gb85b] {
    width: 0.65rem;
    height: 0.65rem;
}

.year-calendar__search-clear:hover[b-lt4o4gb85b] {
    color: #334155;
    background: #e2e8f0;
}

/* Search results panel */

.year-calendar__search-results[b-lt4o4gb85b] {
    background: #fff;
    border: 1px solid #dbe3ee;
    border-radius: 0.85rem;
    box-shadow: 0 4px 24px rgba(18, 33, 59, 0.1);
    overflow: hidden;
}

.year-calendar__search-empty[b-lt4o4gb85b] {
    margin: 0;
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    color: #64748b;
    text-align: center;
}

.year-calendar__search-list[b-lt4o4gb85b] {
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
}

.year-calendar__search-item[b-lt4o4gb85b] {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    transition: background 120ms;
}

.year-calendar__search-item:hover[b-lt4o4gb85b] {
    background: #f8fafc;
}

.year-calendar__search-swatch[b-lt4o4gb85b] {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.3rem;
}

.year-calendar__search-info[b-lt4o4gb85b] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    flex: 1;
}

.year-calendar__search-title[b-lt4o4gb85b] {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.year-calendar__search-notes[b-lt4o4gb85b] {
    font-size: 0.78rem;
    color: #475569;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.year-calendar__search-dates[b-lt4o4gb85b] {
    font-size: 0.73rem;
    color: #94a3b8;
    letter-spacing: 0.01em;
}

.year-calendar__search-edit[b-lt4o4gb85b] {
    appearance: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #94a3b8;
    padding: 0.25rem;
    border-radius: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 120ms, background 120ms;
    flex-shrink: 0;
}

.year-calendar__search-edit svg[b-lt4o4gb85b] {
    width: 0.9rem;
    height: 0.9rem;
}

.year-calendar__search-edit:hover[b-lt4o4gb85b] {
    color: #334155;
    background: #f1f5f9;
}

.year-calendar__search-edit:focus-visible[b-lt4o4gb85b] {
    outline: 2px solid #3b82f6;
    outline-offset: 1px;
}

/* ── Print button ─────────────────────────────────────────────────────── */

.year-calendar__print-btn[b-lt4o4gb85b] {
    appearance: none;
    border: 1.5px solid #d1d9e8;
    border-radius: 999px;
    background: #f8fafc;
    color: #475569;
    font-size: 0.8rem;
    font-family: inherit;
    font-weight: 600;
    padding: 0.42rem 0.85rem 0.42rem 0.65rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: background 150ms, border-color 150ms, color 150ms;
    flex-shrink: 0;
}

.year-calendar__print-btn svg[b-lt4o4gb85b] {
    width: 1rem;
    height: 1rem;
}

.year-calendar__print-btn:hover[b-lt4o4gb85b] {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #0f172a;
}

.year-calendar__print-btn:focus-visible[b-lt4o4gb85b] {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* ── Agenda section (screen) ──────────────────────────────────────────── */

.year-calendar__agenda[b-lt4o4gb85b] {
    padding-top: 0.5rem;
}

.year-calendar__agenda-title[b-lt4o4gb85b] {
    margin: 0 0 1.25rem;
    font-family: var(--font-display, 'Playfair Display', Georgia, serif);
    font-size: 1.25rem;
    font-weight: 700;
    font-style: italic;
    color: var(--pp-ink, #12213b);
    letter-spacing: -0.01em;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--pp-border, #dbe3ee);
}

.year-calendar__agenda-empty[b-lt4o4gb85b] {
    margin: 0;
    font-size: 0.875rem;
    color: var(--pp-muted, #64748b);
}

.year-calendar__agenda-grid[b-lt4o4gb85b] {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.year-calendar__agenda-card[b-lt4o4gb85b] {
    position: relative;
    display: flex;
    background: var(--pp-card, #fff);
    border: 1px solid var(--pp-border, #dbe3ee);
    border-radius: 0.85rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(18, 33, 59, 0.07), 0 1px 3px rgba(18, 33, 59, 0.05);
    transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 180ms cubic-bezier(0.22, 1, 0.36, 1);
    animation: agenda-card-in-b-lt4o4gb85b 380ms cubic-bezier(0.22, 1, 0.36, 1) both;
    animation-delay: calc(var(--card-index, 0) * 55ms);
}

@keyframes agenda-card-in-b-lt4o4gb85b {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.year-calendar__agenda-card:hover[b-lt4o4gb85b] {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(18, 33, 59, 0.13), 0 2px 6px rgba(18, 33, 59, 0.07);
}

.year-calendar__agenda-accent[b-lt4o4gb85b] {
    flex-shrink: 0;
    width: 5px;
    background-color: var(--card-colour, #3b82f6);
    border-radius: 0.85rem 0 0 0.85rem;
}

.year-calendar__agenda-body[b-lt4o4gb85b] {
    flex: 1;
    min-width: 0;
    padding: 0.85rem 0.9rem 0.85rem 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.year-calendar__agenda-dates[b-lt4o4gb85b] {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--pp-muted, #64748b);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.year-calendar__agenda-card-title[b-lt4o4gb85b] {
    margin: 0;
    font-family: var(--font-display, 'Playfair Display', Georgia, serif);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--pp-ink, #12213b);
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.year-calendar__agenda-notes[b-lt4o4gb85b] {
    margin: 0;
    font-size: 0.76rem;
    color: var(--pp-muted, #64748b);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.year-calendar__agenda-edit[b-lt4o4gb85b] {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    appearance: none;
    background: none;
    border: none;
    cursor: pointer;
    color: #cbd5e1;
    padding: 0.25rem;
    border-radius: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 120ms, background 120ms;
    opacity: 0;
}

.year-calendar__agenda-card:hover .year-calendar__agenda-edit[b-lt4o4gb85b],
.year-calendar__agenda-card:focus-within .year-calendar__agenda-edit[b-lt4o4gb85b] {
    opacity: 1;
}

.year-calendar__agenda-edit svg[b-lt4o4gb85b] {
    width: 0.85rem;
    height: 0.85rem;
}

.year-calendar__agenda-edit:hover[b-lt4o4gb85b] {
    color: var(--pp-ink, #12213b);
    background: #f1f5f9;
}

.year-calendar__agenda-edit:focus-visible[b-lt4o4gb85b] {
    opacity: 1;
    outline: 2px solid #3b82f6;
    outline-offset: 1px;
}

@media (max-width: 1280px) {
    .year-calendar__agenda-grid[b-lt4o4gb85b] {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .year-calendar__agenda-grid[b-lt4o4gb85b] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .year-calendar__agenda-grid[b-lt4o4gb85b] {
        grid-template-columns: minmax(0, 1fr);
        gap: 0.75rem;
    }

    .year-calendar__agenda-title[b-lt4o4gb85b] {
        font-size: 1.1rem;
    }
}

/* ── Print-only list (hidden on screen) ──────────────────────────────── */

.year-calendar__print-list[b-lt4o4gb85b] {
    display: none;
}

/* ── @media print ────────────────────────────────────────────────────── */

@page {
    size: A4 landscape;
    margin: 0.5cm;
}

@media print {
    /* Hide interactive / screen-only elements */
    .year-calendar__nav-btn[b-lt4o4gb85b],
    .year-calendar__search[b-lt4o4gb85b],
    .year-calendar__search-results[b-lt4o4gb85b],
    .year-calendar__print-btn[b-lt4o4gb85b],
    .year-calendar__mobile[b-lt4o4gb85b],
    .year-calendar__mobile-toolbar[b-lt4o4gb85b],
    .year-calendar__agenda[b-lt4o4gb85b] {
        display: none !important;
    }

    /* Force the desktop table to appear even on narrow viewports */
    .year-calendar__table[b-lt4o4gb85b] {
        display: table !important;
        min-width: 0;
        width: 100%;
        font-size: 0.6rem;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    /* Strip table backgrounds */
    .year-calendar__day[b-lt4o4gb85b],
    .year-calendar__month-row:nth-child(even) .year-calendar__day:not(.year-calendar__day--outside)[b-lt4o4gb85b],
    .year-calendar__day--weekend:not(.year-calendar__day--outside)[b-lt4o4gb85b],
    .year-calendar__day--today[b-lt4o4gb85b] {
        background: #fff !important;
        border-color: #ddd !important;
        border-bottom-width: 1px !important;
    }

    .year-calendar__day--today time[b-lt4o4gb85b] {
        font-weight: inherit !important;
        font-size: inherit !important;
        color: inherit !important;
    }

    .year-calendar__corner[b-lt4o4gb85b],
    .year-calendar__weekday[b-lt4o4gb85b] {
        background: #1e293b !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Appointment colour bars: keep colour in print */
    .year-calendar__bar[b-lt4o4gb85b] {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    /* Show the print appointments list */
    .year-calendar__print-list[b-lt4o4gb85b] {
        display: block;
        margin-top: 1.5rem;
        page-break-before: auto;
    }

    .year-calendar__print-list-title[b-lt4o4gb85b] {
        font-size: 1rem;
        font-weight: 700;
        margin: 0 0 0.75rem;
        border-bottom: 1px solid #ccc;
        padding-bottom: 0.4rem;
    }

    .year-calendar__print-none[b-lt4o4gb85b] {
        font-size: 0.85rem;
        color: #555;
    }

    .year-calendar__print-items[b-lt4o4gb85b] {
        list-style: none;
        margin: 0;
        padding: 0;
        display: grid;
        gap: 0.35rem;
    }

    .year-calendar__print-item[b-lt4o4gb85b] {
        display: flex;
        align-items: baseline;
        gap: 0.5rem;
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .year-calendar__print-dot[b-lt4o4gb85b] {
        display: inline-block;
        width: 0.55rem;
        height: 0.55rem;
        border-radius: 50%;
        flex-shrink: 0;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .year-calendar__print-item-dates[b-lt4o4gb85b] {
        color: #555;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .year-calendar__print-item-title[b-lt4o4gb85b] {
        font-weight: 600;
        color: #111;
    }

    .year-calendar__print-item-notes[b-lt4o4gb85b] {
        color: #555;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* ── Page scaffold ────────────────────────────────────────────────────── */

.page[b-w3m7stl9qk] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main[b-w3m7stl9qk] {
    flex: 1;
}

/* ── App header ───────────────────────────────────────────────────────── */

.app-header[b-w3m7stl9qk] {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: var(--pp-ink, #12213B);
    border-bottom: 2px solid var(--pp-gold, #C9A452);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    height: 3.75rem;
    box-shadow: 0 2px 16px rgba(18, 33, 59, 0.3);
}

/* Brand wordmark */
.app-header__brand[b-w3m7stl9qk] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
    color: #f7f5f0;
    transition: opacity 150ms;
}

.app-header__brand:hover[b-w3m7stl9qk] {
    opacity: 0.88;
    color: #f7f5f0;
}

.app-header__brand-icon[b-w3m7stl9qk] {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--pp-gold, #C9A452);
    flex-shrink: 0;
}

.app-header__brand-name[b-w3m7stl9qk] {
    font-family: var(--font-display, 'Playfair Display', Georgia, serif);
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: #f7f5f0;
    white-space: nowrap;
}

/* Nav area */
.app-header__nav[b-w3m7stl9qk] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}


.app-header__form[b-w3m7stl9qk] {
    margin: 0;
}

/* Shared button base */
.app-header__btn[b-w3m7stl9qk] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    font-family: var(--font-ui, 'Jost', sans-serif);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: background 150ms, color 150ms, border-color 150ms, transform 120ms, box-shadow 150ms;
    border: 1.5px solid transparent;
    line-height: 1;
}

.app-header__btn:active[b-w3m7stl9qk] {
    transform: scale(0.96);
}

/* Outline: thin white border */
.app-header__btn--outline[b-w3m7stl9qk] {
    background: transparent;
    color: rgba(247, 245, 240, 0.8);
    border-color: rgba(247, 245, 240, 0.3);
}

.app-header__btn--outline:hover[b-w3m7stl9qk] {
    background: rgba(247, 245, 240, 0.1);
    color: var(--pp-gold, #C9A452);
    border-color: var(--pp-gold, #C9A452);
}

/* ── Blazor error UI ──────────────────────────────────────────────────── */

#blazor-error-ui[b-w3m7stl9qk] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-w3m7stl9qk] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* ── Responsive ──────────────────────────────────────────────────────── */

@media (max-width: 480px) {
    .app-header[b-w3m7stl9qk] {
        padding: 0 1rem;
    }

    .app-header__brand-name[b-w3m7stl9qk] {
        font-size: 1.15rem;
    }

    .app-header__user-link[b-w3m7stl9qk] {
        display: none;
    }

    .app-header__btn[b-w3m7stl9qk] {
        padding: 0.4rem 0.8rem;
        font-size: 0.78rem;
    }
}

@media print {
    .app-header[b-w3m7stl9qk],
    #blazor-error-ui[b-w3m7stl9qk] {
        display: none !important;
    }

    main[b-w3m7stl9qk] {
        padding: 0;
    }
}

/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-qhrozsr0fy],
.components-reconnect-repeated-attempt-visible[b-qhrozsr0fy],
.components-reconnect-failed-visible[b-qhrozsr0fy],
.components-pause-visible[b-qhrozsr0fy],
.components-resume-failed-visible[b-qhrozsr0fy],
.components-rejoining-animation[b-qhrozsr0fy] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-qhrozsr0fy],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-qhrozsr0fy],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-qhrozsr0fy],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-qhrozsr0fy],
#components-reconnect-modal.components-reconnect-retrying[b-qhrozsr0fy],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-qhrozsr0fy],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-qhrozsr0fy],
#components-reconnect-modal.components-reconnect-failed[b-qhrozsr0fy],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-qhrozsr0fy] {
    display: block;
}


#components-reconnect-modal[b-qhrozsr0fy] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-qhrozsr0fy 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-qhrozsr0fy 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-qhrozsr0fy 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-qhrozsr0fy]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-qhrozsr0fy 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-qhrozsr0fy {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-qhrozsr0fy {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-qhrozsr0fy {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-qhrozsr0fy] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-qhrozsr0fy] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-qhrozsr0fy] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-qhrozsr0fy] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-qhrozsr0fy] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-qhrozsr0fy] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-qhrozsr0fy] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-qhrozsr0fy 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-qhrozsr0fy] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-qhrozsr0fy {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* ── Home hero ────────────────────────────────────────────────────────── */

.home-hero[b-hi4d4hr3g8] {
    padding-bottom: 1.5rem;
    animation: hero-in-b-hi4d4hr3g8 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes hero-in-b-hi4d4hr3g8 {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-hero__hint[b-hi4d4hr3g8] {
    margin: 0;
    font-size: 0.9rem;
    color: var(--pp-muted, #64748b);
    font-weight: 400;
    letter-spacing: 0.01em;
}

.home-hero__hint-link[b-hi4d4hr3g8] {
    color: var(--pp-ink, #12213B);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: var(--pp-gold, #C9A452);
    text-underline-offset: 2px;
    transition: color 150ms;
}

.home-hero__hint-link:hover[b-hi4d4hr3g8] {
    color: var(--pp-gold, #C9A452);
}

.home-hero__hint--welcome[b-hi4d4hr3g8] {
    color: var(--pp-ink, #12213B);
    font-weight: 500;
}

@media print {
    .home-hero[b-hi4d4hr3g8] {
        display: none;
    }
}
