:root {
    --ih-av-text: #111827;
    --ih-av-muted: #6b7280;
    --ih-av-border: #e5e7eb;
    --ih-av-surface: #ffffff;
    --ih-av-soft: #f8fafc;
    --ih-av-radius: 14px;
    --ih-av-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.ih-av-public,
.ih-av-dashboard,
.ih-av-login-card {
    color: var(--ih-av-text);
    box-sizing: border-box;
}

.ih-av-public *,
.ih-av-dashboard *,
.ih-av-login-card * {
    box-sizing: border-box;
}

.ih-av-public {
    margin: 20px 0 8px;
    width: 100%;
}

.ih-av-public__intro {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.ih-av-public h2 {
    margin: 0;
    color: #17191d;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 700;
    text-align: left;
}

.ih-av-public-note {
    margin: 0;
    color: #68645f;
    font-size: 14px;
    line-height: 1.4;
    text-align: right;
}

@media (max-width: 781px) {
    .ih-av-public__intro {
        align-items: flex-end;
    }

    .ih-av-public h2 {
        font-size: 17px;
    }

    .ih-av-public-note {
        max-width: 250px;
    }
}

.ih-av-public-carousel {
    position: relative;
    min-width: 0;
}

.ih-av-public-track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 0 6px;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
}

.ih-av-public-track::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

.ih-av-public-card {
    --ih-av-card-color: #287f54;
    --ih-av-card-soft: #f0f7f3;
    flex: 0 0 176px;
    min-width: 176px;
    height: 232px;
    min-height: 232px;
    padding: 0;
    overflow: hidden;
    border: 1px solid #dfe4e8;
    border-radius: 14px;
    background: var(--ih-av-surface);
    box-shadow: 0 5px 16px rgba(15, 23, 42, 0.08);
    display: grid;
    grid-template-rows: 42px minmax(0, 1fr) 50px;
    align-items: center;
    text-align: center;
    color: var(--ih-av-card-color);
    text-decoration: none;
    font: inherit;
    cursor: default;
    scroll-snap-align: start;
    transition: border-color .14s ease, box-shadow .14s ease;
}

.ih-av-status-available {
    --ih-av-card-color: #287f54;
    --ih-av-card-soft: #f0f7f3;
}

.ih-av-status-morning {
    --ih-av-card-color: #3f6f9f;
    --ih-av-card-soft: #f0f5fa;
}

.ih-av-status-afternoon {
    --ih-av-card-color: #70578e;
    --ih-av-card-soft: #f5f1f8;
}

.ih-av-status-unknown {
    --ih-av-card-color: #bd711f;
    --ih-av-card-soft: #fbf4eb;
}

.ih-av-other-date {
    --ih-av-card-color: #111318;
    --ih-av-card-soft: #111318;
}

.ih-av-status-busy {
    --ih-av-card-color: #747a83;
    --ih-av-card-soft: #f3f4f5;
}

.ih-av-public-card[href],
button.ih-av-public-card:not(:disabled) {
    cursor: pointer;
}

.ih-av-public-card[href]:focus-visible,
button.ih-av-public-card:not(:disabled):focus-visible {
    border-color: var(--ih-av-card-color);
    outline: none;
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--ih-av-card-color) 28%, transparent), 0 5px 16px rgba(15, 23, 42, 0.08);
}

@media (hover: hover) and (pointer: fine) {
    .ih-av-public-card[href]:hover,
    button.ih-av-public-card:not(:disabled):hover {
        border-color: color-mix(in srgb, var(--ih-av-card-color) 55%, #dfe4e8);
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.11);
    }
}

.ih-av-public-card.is-search-choice,
.ih-av-public-card.is-search-choice:hover,
.ih-av-public-card.is-search-choice:focus-visible {
    border-color: var(--ihs-accent-color, #d8781f);
    box-shadow: 0 0 0 2px var(--ihs-accent-color, #d8781f), 0 6px 18px rgba(15, 23, 42, 0.1);
}

.ih-av-carousel-arrow {
    display: none;
}

@media (min-width: 601px) {
    .ih-av-public-carousel:not(.is-overflowing) .ih-av-public-track {
        justify-content: center;
    }

    .ih-av-public-day,
    .ih-av-public-date,
    .ih-av-public-status {
        white-space: nowrap;
    }

    .ih-av-carousel-arrow:not([hidden]) {
        position: absolute;
        top: 50%;
        z-index: 2;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 44px;
        margin: 0;
        padding: 0;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        background: #ffffff;
        color: #111827;
        font-family: inherit;
        font-size: 28px;
        font-style: normal;
        font-weight: 400;
        line-height: 1;
        cursor: pointer;
        transform: translateY(-50%);
        transition: border-color .14s ease, background-color .14s ease;
    }

    .ih-av-carousel-arrow:hover,
    .ih-av-carousel-arrow:focus-visible {
        border-color: #9ca3af;
        background: #f8fafc;
    }

    .ih-av-carousel-arrow:focus-visible {
        outline: 3px solid rgba(217, 154, 0, 0.28);
        outline-offset: 2px;
    }

    .ih-av-carousel-arrow--previous {
        left: 2px;
    }

    .ih-av-carousel-arrow--next {
        right: 2px;
    }
}

.ih-av-public-date-head {
    align-self: stretch;
    min-width: 0;
    height: 42px;
    padding: 4px 10px 0;
    background: var(--ih-av-card-soft);
    border-bottom: 1px solid #e1e5e8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--ih-av-card-color);
    font-size: 14px;
    line-height: 1.1;
    font-weight: 750;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.ih-av-public-date-head--other {
    font-size: 12.5px;
    letter-spacing: .035em;
}

.ih-av-public-day,
.ih-av-public-date {
    display: inline;
    margin: 0;
    color: inherit;
    font: inherit;
}

.ih-av-public-card-body {
    align-self: stretch;
    min-height: 0;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
}

.ih-av-public-icon {
    display: block;
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    background-color: currentColor;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
}

.ih-av-status-available .ih-av-public-icon {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='24' cy='24' r='11'/%3E%3Cpath d='m18.5 24 4 4 7.5-8.5M24 5v5M24 38v5M5 24h5M38 24h5M10.6 10.6l3.6 3.6M33.8 33.8l3.6 3.6M37.4 10.6l-3.6 3.6M14.2 33.8l-3.6 3.6'/%3E%3C/g%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='24' cy='24' r='11'/%3E%3Cpath d='m18.5 24 4 4 7.5-8.5M24 5v5M24 38v5M5 24h5M38 24h5M10.6 10.6l3.6 3.6M33.8 33.8l3.6 3.6M37.4 10.6l-3.6 3.6M14.2 33.8l-3.6 3.6'/%3E%3C/g%3E%3C/svg%3E");
}

.ih-av-status-morning .ih-av-public-icon {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Ccircle cx='24' cy='24' r='10'/%3E%3Cpath d='M24 5v5M24 38v5M5 24h5M38 24h5M10.6 10.6l3.6 3.6M33.8 33.8l3.6 3.6M37.4 10.6l-3.6 3.6M14.2 33.8l-3.6 3.6'/%3E%3C/g%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Ccircle cx='24' cy='24' r='10'/%3E%3Cpath d='M24 5v5M24 38v5M5 24h5M38 24h5M10.6 10.6l3.6 3.6M33.8 33.8l3.6 3.6M37.4 10.6l-3.6 3.6M14.2 33.8l-3.6 3.6'/%3E%3C/g%3E%3C/svg%3E");
}

.ih-av-status-afternoon .ih-av-public-icon {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 30a13 13 0 0 1 26 0M6 30h36M24 10v6M10.5 18l4.5 3M37.5 18 33 21'/%3E%3C/g%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M11 30a13 13 0 0 1 26 0M6 30h36M24 10v6M10.5 18l4.5 3M37.5 18 33 21'/%3E%3C/g%3E%3C/svg%3E");
}

.ih-av-status-unknown .ih-av-public-icon {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='24' cy='24' r='15'/%3E%3Cpath d='M19.5 19a4.8 4.8 0 1 1 7.5 4c-2 1.4-3 2.4-3 5M24 34h.01'/%3E%3C/g%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='24' cy='24' r='15'/%3E%3Cpath d='M19.5 19a4.8 4.8 0 1 1 7.5 4c-2 1.4-3 2.4-3 5M24 34h.01'/%3E%3C/g%3E%3C/svg%3E");
}

.ih-av-status-busy .ih-av-public-icon {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Ccircle cx='24' cy='24' r='15'/%3E%3Cpath d='m18 18 12 12M30 18 18 30'/%3E%3C/g%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round'%3E%3Ccircle cx='24' cy='24' r='15'/%3E%3Cpath d='m18 18 12 12M30 18 18 30'/%3E%3C/g%3E%3C/svg%3E");
}

.ih-av-public-status {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 650;
    color: currentColor;
}

.ih-av-public-status > span {
    display: block;
    white-space: nowrap;
}

.ih-av-public-cta {
    align-self: stretch;
    min-width: 0;
    height: 50px;
    padding: 0 9px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    background: var(--ih-av-card-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 13px;
    line-height: 1.1;
    font-weight: 700;
    white-space: nowrap;
}

.ih-av-public-cta:not(.is-disabled)::before {
    content: '';
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    background: currentColor;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3C6.5 3 2 6.7 2 11.3c0 2.7 1.5 5 3.9 6.6L5 22l4.4-2.1c.8.2 1.7.3 2.6.3 5.5 0 10-3.7 10-8.4S17.5 3 12 3Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='M12 3C6.5 3 2 6.7 2 11.3c0 2.7 1.5 5 3.9 6.6L5 22l4.4-2.1c.8.2 1.7.3 2.6.3 5.5 0 10-3.7 10-8.4S17.5 3 12 3Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.ih-av-public-cta.is-disabled {
    background: #adb1b7;
}

.ih-av-other-date {
    background: #ffffff;
}

.ih-av-other-date .ih-av-public-date-head {
    border-bottom-color: #111318;
    background: #111318;
    color: #ffffff;
}

.ih-av-other-date:disabled {
    opacity: .55;
}

.ih-av-calendar-icon {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='11' width='32' height='29' rx='5'/%3E%3Cpath d='M15 7v8M33 7v8M8 20h32M16 27h.01M24 27h.01M32 27h.01M16 34h.01M24 34h.01'/%3E%3C/g%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='black' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='8' y='11' width='32' height='29' rx='5'/%3E%3Cpath d='M15 7v8M33 7v8M8 20h32M16 27h.01M24 27h.01M32 27h.01M16 34h.01M24 34h.01'/%3E%3C/g%3E%3C/svg%3E");
}

.ih-av-request-dialog[hidden],
.ih-av-date-dialog[hidden] {
    display: none;
}

.ih-av-request-dialog,
.ih-av-date-dialog {
    position: fixed;
    inset: 0;
    z-index: 1000001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.ih-av-dialog-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    border: 0;
    background: rgba(15, 23, 42, .58);
    cursor: default;
}

.ih-av-dialog-panel {
    position: relative;
    z-index: 1;
    width: min(440px, calc(100vw - 32px));
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    padding: 26px;
    border-radius: 18px;
    background: var(--ih-av-surface);
    box-shadow: var(--ih-av-shadow);
    text-align: center;
}

.ih-av-dialog-panel h3 {
    margin: 0 34px 7px;
    font-size: 21px;
    line-height: 1.25;
}

.ih-av-dialog-panel > p {
    color: var(--ih-av-muted);
}

.ih-av-dialog-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--ih-av-soft);
    color: var(--ih-av-text);
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
}

.ih-av-request-status {
    margin: 0 0 16px;
    font-size: 14px;
    line-height: 1.4;
}

.ih-av-qr-code {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    margin: 0 auto 14px;
}

.ih-av-qr-code canvas {
    display: block;
    width: min(280px, 100%) !important;
    height: auto !important;
    max-width: 100%;
}

.ih-av-qr-help {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.ih-av-qr-loading {
    margin: 0;
    color: var(--ih-av-muted);
    font-size: 14px;
}

.ih-av-qr-error {
    margin: 0;
    padding: 14px;
    border: 1px solid #fecaca;
    border-radius: 10px;
    background: #fef2f2;
    color: #991b1b;
    font-size: 14px;
}

.ih-av-date-panel {
    width: min(420px, calc(100vw - 32px));
}

.ih-av-date-panel > p {
    margin: 0 0 17px;
    font-size: 14px;
    line-height: 1.45;
}

.ih-av-other-date-input {
    display: block;
    width: 100%;
    min-height: 50px;
    padding: 9px 12px;
    border: 1px solid var(--ih-av-border);
    border-radius: 10px;
    background: #ffffff;
    color: var(--ih-av-text);
    font: inherit;
}

.ih-av-date-continue {
    width: 100%;
    min-height: 48px;
    margin-top: 12px;
    padding: 10px 16px;
    border: 0;
    border-radius: 10px;
    background: #111827;
    color: #ffffff;
    font: inherit;
    font-weight: 750;
    cursor: pointer;
}

html.ih-av-dialog-open,
html.ih-av-dialog-open body {
    overflow: hidden;
}

.ih-av-login-shell {
    width: min(100%, 520px);
    margin: 24px auto;
}

.ih-av-dashboard {
    width: min(100%, 760px);
    margin: 24px auto;
}

.ih-av-login-card,
.ih-av-dashboard {
    background: var(--ih-av-surface);
    border: 1px solid var(--ih-av-border);
    border-radius: 20px;
    box-shadow: var(--ih-av-shadow);
}

.ih-av-login-card {
    padding: 28px;
}

.ih-av-login-card h2,
.ih-av-dashboard h2 {
    margin: 0;
    font-size: clamp(26px, 5vw, 36px);
    line-height: 1.1;
}

.ih-av-login-card p,
.ih-av-subtitle {
    color: var(--ih-av-muted);
}

.ih-av-login-card label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
}

.ih-av-login-card input[type="email"],
.ih-av-login-card input[type="password"] {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--ih-av-border);
    border-radius: 10px;
}

.ih-av-login-card .button-primary {
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 10px;
    background: #111827;
    color: #ffffff;
    font-weight: 700;
    cursor: pointer;
}

.ih-av-login-card .button-primary:hover,
.ih-av-login-card .button-primary:focus-visible {
    background: #1f2937;
    color: #ffffff;
}

.ih-av-login-card .button-primary:focus-visible {
    outline: 3px solid rgba(217, 154, 0, 0.32);
    outline-offset: 2px;
}

.ih-av-dashboard {
    padding: clamp(18px, 4vw, 34px);
}

.ih-av-dashboard-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 32px;
    margin: 0 0 24px;
}

.ih-av-dashboard-portfolio:empty {
    display: none;
}

.ih-av-toolbar-link {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid var(--ih-av-border);
    border-radius: 8px;
    background: var(--ih-av-surface);
    color: var(--ih-av-muted);
    text-decoration: none;
    font-size: 12.5px;
    line-height: 1;
    font-weight: 650;
    box-shadow: none;
    transition: border-color .16s ease, color .16s ease, background-color .16s ease;
}

.ih-av-toolbar-link:hover,
.ih-av-toolbar-link:focus-visible {
    border-color: #cbd5e1;
    background: #f8fafc;
    color: var(--ih-av-text);
    outline: none;
}

.ih-av-logout {
    margin-left: auto;
}

.ih-av-dashboard-header {
    margin-bottom: 26px;
}

.ih-av-eyebrow {
    margin: 0 0 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ih-av-muted);
}

.ih-av-subtitle {
    margin: 10px 0 0;
    font-size: 15px;
}

.ih-av-week-list {
    border: 1px solid var(--ih-av-border);
    border-radius: var(--ih-av-radius);
    overflow: hidden;
}

.ih-av-day-row {
    min-height: 66px;
    padding: 10px 12px 10px 18px;
    display: grid;
    grid-template-columns: minmax(100px, 1fr) minmax(220px, 1.8fr);
    align-items: center;
    gap: 16px;
    background: var(--ih-av-surface);
    border-bottom: 1px solid var(--ih-av-border);
}

.ih-av-day-row:last-child {
    border-bottom: 0;
}

.ih-av-day-copy {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 4px 8px;
}

.ih-av-day-name {
    font-weight: 750;
}

.ih-av-day-date {
    font-size: 13px;
    color: var(--ih-av-muted);
}

.ih-av-today-badge {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.ih-av-day-row.is-today {
    background: #f8fafc;
    box-shadow: inset 3px 0 0 #111827;
}

.ih-av-status-trigger {
    width: 100%;
    min-height: 44px;
    padding: 9px 12px;
    border: 1px solid var(--ih-av-border);
    border-radius: 10px;
    background: var(--ih-av-soft);
    color: var(--ih-av-text);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

.ih-av-status-trigger:hover,
.ih-av-status-trigger:focus-visible {
    border-color: #cbd5e1;
    background: #ffffff;
}

.ih-av-status-trigger:focus-visible {
    outline: 3px solid rgba(217, 154, 0, 0.28);
    outline-offset: 2px;
}

.ih-av-current-status {
    font-size: 14px;
    line-height: 1.3;
}

.ih-av-chevron {
    font-size: 24px;
    line-height: 1;
    color: var(--ih-av-muted);
}

.ih-av-save-state {
    min-height: 22px;
    margin-top: 12px;
    text-align: right;
    font-size: 13px;
    color: var(--ih-av-muted);
}

.ih-av-save-state[data-state="error"] {
    color: #991b1b;
}

.ih-av-picker[hidden] {
    display: none;
}

.ih-av-picker {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.ih-av-picker-backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    border: 0;
    background: rgba(15, 23, 42, 0.52);
    cursor: default;
}

.ih-av-picker-sheet {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    padding: 10px 18px 20px;
    border-radius: 22px 22px 0 0;
    background: var(--ih-av-surface);
    box-shadow: var(--ih-av-shadow);
}

.ih-av-picker-handle {
    width: 44px;
    height: 5px;
    margin: 0 auto 16px;
    border-radius: 99px;
    background: #d1d5db;
}

.ih-av-picker-sheet h2 {
    margin: 0 0 14px;
    font-size: 20px;
}

.ih-av-picker-options {
    display: grid;
    gap: 8px;
}

.ih-av-picker-option,
.ih-av-picker-cancel {
    width: 100%;
    min-height: 50px;
    padding: 10px 14px;
    border: 1px solid var(--ih-av-border);
    border-radius: 12px;
    background: var(--ih-av-surface);
    color: var(--ih-av-text);
    text-align: left;
    font: inherit;
    cursor: pointer;
}

.ih-av-picker-option.is-selected {
    background: var(--ih-av-soft);
    font-weight: 750;
}

.ih-av-picker-option:focus-visible,
.ih-av-picker-cancel:focus-visible,
.ih-av-date-continue:focus-visible,
.ih-av-dialog-close:focus-visible {
    outline: 3px solid rgba(217, 154, 0, 0.30);
    outline-offset: 2px;
}

.ih-av-picker-cancel {
    margin-top: 12px;
    text-align: center;
    background: var(--ih-av-soft);
    font-weight: 700;
}

html.ih-av-picker-open,
html.ih-av-picker-open body {
    overflow: hidden;
}

.ih-av-notice {
    max-width: 720px;
    margin: 24px auto;
    padding: 16px;
    border-radius: 12px;
}

.ih-av-notice-error {
    border: 1px solid #fecaca;
    background: #fef2f2;
    color: #991b1b;
}

.ih-av-notice-info {
    border: 1px solid #cbd5e1;
    background: #f8fafc;
    color: #334155;
}

@media (max-width: 600px) {
    .ih-av-public-track {
        scroll-behavior: auto;
    }

    .ih-av-public-card {
        flex-basis: calc((100% - 16px) / 2.35);
        min-width: calc((100% - 16px) / 2.35);
        height: 216px;
        min-height: 216px;
        padding: 0;
        grid-template-rows: 40px minmax(0, 1fr) 46px;
        background: #ffffff;
    }

    .ih-av-public-date-head {
        height: 40px;
        padding: 4px 8px 0;
        gap: 6px;
        font-size: 13px;
    }

    .ih-av-public-date-head--other {
        font-size: 11.5px;
    }

    .ih-av-public-card-body {
        padding: 8px 7px;
        gap: 7px;
    }

    .ih-av-public-icon {
        width: 46px;
        height: 46px;
    }

    .ih-av-public-status {
        min-height: 36px;
        font-size: 13px;
        font-weight: 650;
    }

    .ih-av-public-cta {
        height: 46px;
        padding-inline: 6px;
        gap: 5px;
        font-size: 11.5px;
    }

    .ih-av-public-cta:not(.is-disabled)::before {
        width: 15px;
        height: 15px;
    }

    .ih-av-request-dialog,
    .ih-av-date-dialog {
        align-items: flex-end;
        padding: 0;
    }

    .ih-av-dialog-panel,
    .ih-av-date-panel {
        width: 100%;
        max-height: 88vh;
        padding: 24px 18px 22px;
        border-radius: 20px 20px 0 0;
    }

    .ih-av-login-shell,
    .ih-av-dashboard {
        width: 100%;
        margin: 0;
    }

    .ih-av-login-card,
    .ih-av-dashboard {
        border-radius: 0;
        border-left: 0;
        border-right: 0;
        box-shadow: none;
    }

    .ih-av-dashboard-toolbar {
        margin-bottom: 20px;
    }

    .ih-av-toolbar-link {
        min-height: 30px;
        padding: 0 9px;
        font-size: 12px;
    }

    .ih-av-day-row {
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 13px 14px;
    }

    .ih-av-status-trigger {
        min-height: 46px;
    }
}

@media (max-width: 360px) {
    .ih-av-public-card {
        flex-basis: calc((100% - 8px) / 1.45);
        min-width: calc((100% - 8px) / 1.45);
    }
}

.ih-av-login-error {
    margin: 14px 0;
    padding: 10px 12px;
    border: 1px solid #fecaca;
    border-radius: 10px;
    background: #fef2f2;
    color: #991b1b;
    font-size: 14px;
}

.ih-av-login-help {
    margin: 12px 0 0;
    font-size: 13px;
}

.ih-av-login-help a {
    color: var(--ih-av-muted);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.ih-av-login-help a:hover,
.ih-av-login-help a:focus-visible {
    color: var(--ih-av-text);
    outline: none;
}

@media (min-width: 601px) {
    .ih-av-picker {
        align-items: center;
        padding: 24px;
    }

    .ih-av-picker-sheet {
        width: min(520px, calc(100vw - 48px));
        max-height: calc(100vh - 48px);
        overflow-y: auto;
        padding: 22px;
        border-radius: 18px;
    }

    .ih-av-picker-handle {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .ih-av-public-track {
        scroll-behavior: auto;
    }

    .ih-av-public-card,
    .ih-av-carousel-arrow {
        transition: none;
    }
}
