@import '_content/Community.Blazor.MapLibre/Community.Blazor.MapLibre.vicrawpt6h.bundle.scp.css';

/* /Components/Map/AreaEditor.razor.rz.scp.css */
.area-entry-panel[b-kqioway22u] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
    border-top: 1px solid var(--color-shadow-soft);
    background: var(--color-surface);
}

.area-name-field[b-kqioway22u] {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    color: var(--color-muted);
    font-size: 0.8rem;
    font-weight: 600;
}

.area-entry-heading[b-kqioway22u],
.area-entry-heading > div[b-kqioway22u] {
    display: flex;
}

.area-entry-heading[b-kqioway22u] {
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

    .area-entry-heading > div[b-kqioway22u] {
        min-width: 0;
        flex-direction: column;
        gap: 0.15rem;
    }

    .area-entry-heading strong[b-kqioway22u] {
        color: var(--color-ink-strong);
        font-size: 0.95rem;
    }

    .area-entry-heading span[b-kqioway22u] {
        color: var(--color-muted);
        font-size: 0.82rem;
        line-height: 1.3;
    }

.area-vertex-count[b-kqioway22u] {
    flex: 0 0 auto;
    font-weight: 700;
}

.area-style-fields[b-kqioway22u] {
    display: grid;
    grid-template-columns: auto minmax(10rem, 1fr);
    align-items: end;
    gap: 1rem;
}

    .area-style-fields label[b-kqioway22u] {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        color: var(--color-muted);
        font-size: 0.8rem;
        font-weight: 600;
    }

.area-opacity-field[b-kqioway22u] {
    min-width: 0;
}

.area-entry-actions[b-kqioway22u] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
/* /Components/Map/FestivalMap.razor.rz.scp.css */
.map-wrapper[b-quqidymr09] {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.map-interaction-surface[b-quqidymr09] {
    position: relative;
    width: 100%;
    height: 100%;
}

.map-filter-backdrop[b-quqidymr09] {
    position: absolute;
    inset: 0;
    z-index: var(--z-map-filter-backdrop);
    background: var(--color-backdrop);
    cursor: default;
    touch-action: none;
}

.map-wrapper[b-quqidymr09]  .editable-area-vertex,
.map-wrapper[b-quqidymr09]  .editable-area-midpoint {
    cursor: pointer;
}

/*
 * Mobile:
 * MapPage has an exact viewport-relative height, so the map simply
 * fills it. There is no 600px limit on mobile.
 */
@media (max-width: 767.98px) {
    .map-wrapper[b-quqidymr09] {
        width: 100%;
        height: 100%;
        max-height: none;
        margin: 0;
        border-radius: 0;
    }
}

/*
 * Tablet and desktop:
 * Keep the 600px maximum. When the viewport is shorter, subtract
 * the header, normal layout padding, and a final 1rem bottom gap.
 */
@media (min-width: 768px) {
    .map-wrapper[b-quqidymr09] {
        height: min( 600px, calc( 100dvh - var(--app-header-height, 4rem) - var(--app-content-padding-top, 1rem) - var(--app-content-padding-bottom, 1rem) - 1rem ) );
    }
}

.map-festival-home-button[b-quqidymr09],
.map-locate-button[b-quqidymr09] {
    --icon-button-size: 2.75rem;
    --icon-size: 1.4rem;
    --icon-button-hover-bg: var(--color-surface);
    position: absolute;
    bottom: var(--map-locate-button-bottom, 1rem);
    z-index: var(--z-map-control);
    color: var(--color-ink-strong);
    border: 1px solid var(--color-shadow-soft);
    background: var(--surface-glass);
    box-shadow: 0 0.4rem 1.5rem var(--color-shadow-strong);
    backdrop-filter: blur(8px);
}

.map-festival-home-button[b-quqidymr09] {
    left: 1rem;
}

.map-locate-button[b-quqidymr09] {
    right: 1rem;
}

    .map-locate-button.is-locating[b-quqidymr09] {
        color: var(--color-muted);
        animation: map-locate-pulse-b-quqidymr09 1s ease-in-out infinite;
    }

    .map-locate-button:disabled[b-quqidymr09] {
        cursor: not-allowed;
    }

@keyframes map-locate-pulse-b-quqidymr09 {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.45;
    }
}
/* /Components/Map/Overlays/MapInteractionOverlay.razor.rz.scp.css */
.spot-location-panel[b-bvcv8ib33x] {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    z-index: var(--z-map-control);
    width: min(calc(100% - 2rem), 32rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.75rem;
    border: 1px solid var(--color-shadow-soft);
    border-radius: 0.75rem;
    background: var(--surface-glass);
    box-shadow: 0 0.4rem 1.5rem var(--color-shadow-strong);
    transform: translateX(-50%);
    backdrop-filter: blur(8px);
}

.spot-location-copy[b-bvcv8ib33x] {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

    .spot-location-copy strong[b-bvcv8ib33x] {
        color: var(--color-ink-strong);
        font-size: 0.95rem;
    }

    .spot-location-copy span[b-bvcv8ib33x] {
        color: var(--color-muted);
        font-size: 0.82rem;
        line-height: 1.3;
    }

.spot-location-actions[b-bvcv8ib33x] {
    flex: 0 0 auto;
    display: flex;
    gap: 0.5rem;
}

.spot-location-action-group[b-bvcv8ib33x] {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spot-location-user-action[b-bvcv8ib33x] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

    .spot-location-user-action[b-bvcv8ib33x]  svg {
        width: 1.15rem;
        height: 1.15rem;
    }

@media (hover: none) {
    .spot-location-user-action:hover:not(:active)[b-bvcv8ib33x] {
        color: var(--bs-btn-color);
        border-color: var(--bs-btn-border-color);
        background-color: var(--bs-btn-bg);
    }
}

.festival-center-location-marker[b-bvcv8ib33x] {
    z-index: var(--z-map-center-marker);
    width: 1.75rem;
    height: 2.35rem;
    color: var(--color-ink);
}

.area-vertex-crosshair[b-bvcv8ib33x] {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: var(--z-map-marker);
    width: 2rem;
    height: 2rem;
    border: 2px solid #fff;
    border-radius: 50%;
    background: rgba(13, 110, 253, 0.14);
    box-shadow: 0 0 0 2px var(--color-primary), 0 0.2rem 0.5rem rgba(0, 0, 0, 0.28);
    pointer-events: none;
    transform: translate(-50%, -50%);
}

    .area-vertex-crosshair[b-bvcv8ib33x]::before,
    .area-vertex-crosshair[b-bvcv8ib33x]::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        background: var(--color-primary);
        transform: translate(-50%, -50%);
    }

    .area-vertex-crosshair[b-bvcv8ib33x]::before {
        width: 2.8rem;
        height: 2px;
    }

    .area-vertex-crosshair[b-bvcv8ib33x]::after {
        width: 2px;
        height: 2.8rem;
    }

@media (max-width: 575.98px) {
    .spot-location-panel[b-bvcv8ib33x] {
        align-items: stretch;
        flex-direction: column;
    }

    .spot-location-actions[b-bvcv8ib33x] {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .spot-location-action-group[b-bvcv8ib33x] {
        width: 100%;
    }
}
/* /Components/Map/Overlays/MapListOverlay.razor.rz.scp.css */
.map-list-overlay-backdrop[b-4ivqu76n0n] {
    position: fixed;
    inset: var(--app-header-height, 4rem) 0 0;
    z-index: var(--z-overlay-backdrop);
    border: 0;
    background: var(--color-backdrop);
}

.map-list-overlay[b-4ivqu76n0n] {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: var(--z-overlay);
    max-height: min(72dvh, 38rem);
    display: flex;
    flex-direction: column;
    padding-bottom: env(safe-area-inset-bottom);
    border-radius: 1rem 1rem 0 0;
    background: var(--color-surface);
    box-shadow: 0 -0.75rem 2rem var(--color-shadow-strong);
}

.map-list-overlay-header[b-4ivqu76n0n] {
    min-height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--color-border);
}

.map-list-overlay-header > div[b-4ivqu76n0n] {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.map-list-overlay-header h2[b-4ivqu76n0n] {
    margin: 0;
    color: var(--color-ink);
    font-size: 1.2rem;
    font-weight: 700;
}

.map-list-overlay-count[b-4ivqu76n0n] {
    min-width: 2rem;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: var(--color-surface-muted);
    color: var(--color-muted);
    font-size: 0.82rem;
    text-align: center;
}

.map-list-overlay-close[b-4ivqu76n0n] {
    --icon-button-size: 2.5rem;
    --icon-size: 1.35rem;
}

.map-list-overlay-content[b-4ivqu76n0n] {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0 1rem 1rem;
}

@media (min-width: 768px) {
    .map-list-overlay[b-4ivqu76n0n] {
        top: var(--app-header-height, 4rem);
        right: var(--map-overlay-inline-edge, 0px);
        bottom: 0;
        left: auto;
        width: min(26rem, 90vw);
        max-height: none;
        border-radius: 0;
        box-shadow: -0.75rem 0 2rem var(--color-shadow-strong);
    }
}

@media (min-width: 53rem) {
    .map-list-overlay-backdrop[b-4ivqu76n0n] {
        right: var(--map-overlay-inline-edge, 0px);
        left: var(--map-overlay-inline-edge, 0px);
    }
}
/* /Components/Map/Overlays/MapLoadingOverlay.razor.rz.scp.css */
.map-loading-overlay[b-wrdr31wlqx] {
    position: absolute;
    inset: 0;
    z-index: var(--z-map-loading);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.75rem;
    background: var(--surface-glass);
    backdrop-filter: blur(2px);
}

    .map-loading-overlay .spinner-border[b-wrdr31wlqx] {
        width: 2.25rem;
        height: 2.25rem;
        color: var(--color-primary);
    }

.map-loading-text[b-wrdr31wlqx] {
    max-width: 18rem;
    color: var(--color-muted);
    font-size: 0.9rem;
    text-align: center;
}
/* /Components/Map/Overlays/SpotListOverlay.razor.rz.scp.css */
.spots-empty-message[b-25olywrory] {
    margin: 1rem 0;
    color: var(--color-muted);
}

.pin-list[b-25olywrory] {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .pin-list li[b-25olywrory] {
        position: relative;
        padding: 0.9rem 0 0.9rem 2rem;
        border-bottom: 1px solid var(--color-surface-muted);
    }

.pin-color[b-25olywrory] {
    position: absolute;
    top: 1.15rem;
    left: 0;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.pin-icon[b-25olywrory] {
    position: absolute;
    top: 0.9rem;
    left: 0;
    width: 1.5rem;
    height: 1.5rem;
    object-fit: contain;
}

.spot-name-link[b-25olywrory] {
    appearance: none;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-link-blue);
    font: inherit;
    font-weight: 700;
    line-height: inherit;
    text-align: left;
    text-decoration: underline;
    cursor: pointer;
}

    .spot-name-link:hover[b-25olywrory] {
        color: var(--color-link-blue-dark);
    }

.spot-edit-button[b-25olywrory] {
    margin-left: 0.65rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-link-blue);
    font: inherit;
    font-size: 0.82rem;
    text-decoration: underline;
    cursor: pointer;
}

.spot-delete-button[b-25olywrory] {
    margin-left: 0.65rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-danger);
    font: inherit;
    font-size: 0.82rem;
    text-decoration: underline;
    cursor: pointer;
}

.spot-description[b-25olywrory] {
    margin-top: 0.25rem;
    color: var(--color-ink-strong);
    font-size: 0.9rem;
}

.spot-meta[b-25olywrory] {
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-muted);
    font-size: 0.75rem;
    line-height: 1.25;
    white-space: nowrap;
}

.spot-meta-item[b-25olywrory] {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    flex: 0 0 auto;
}

.spot-meta-item[b-25olywrory]  .spot-meta-icon {
    flex: 0 0 auto;
    width: 0.85rem;
    height: 0.85rem;
}
/* /Components/Map/Overlays/SpotSearchFilterOverlay.razor.rz.scp.css */
.map-search-overlay[b-qqvcvadbeg] {
    position: absolute;
    top: 0.75rem;
    right: 0;
    left: 0;
    width: min(calc(100% - 1.5rem), 34rem);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    pointer-events: none;
}

    .map-search-overlay > *[b-qqvcvadbeg] {
        pointer-events: auto;
    }

.map-search-row[b-qqvcvadbeg] {
    position: relative;
    z-index: var(--z-map-search);
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
}

.map-search-input-group[b-qqvcvadbeg] {
    flex: 1 1 auto;
    min-width: 0;
    border-radius: 0.55rem;
    box-shadow: 0 0.25rem 1rem var(--color-shadow-strong);
}

    .map-search-input-group .form-control[b-qqvcvadbeg],
    .map-search-input-group .spot-filter-button[b-qqvcvadbeg] {
        background: var(--surface-glass);
        backdrop-filter: blur(8px);
    }

    .map-search-input-group .form-control[b-qqvcvadbeg] {
        min-height: 3rem;
    }

.spot-filter-button[b-qqvcvadbeg],
.spot-filter-button:hover[b-qqvcvadbeg],
.spot-filter-button:focus[b-qqvcvadbeg] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 3rem;
    color: var(--color-muted);
}

.spot-filter-button[b-qqvcvadbeg]  .spot-filter-icon {
    width: 1rem;
    height: 1rem;
}

.spot-filter-active-dot[b-qqvcvadbeg] {
    position: absolute;
    top: 0.4rem;
    right: 0.5rem;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: var(--color-danger);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.9);
}

.spot-reset-button[b-qqvcvadbeg] {
    flex: 0 0 auto;
    align-self: stretch;
    border-radius: 0.55rem;
    background: var(--surface-glass);
    box-shadow: 0 0.25rem 1rem var(--color-shadow-strong);
    backdrop-filter: blur(8px);
    white-space: nowrap;
}

.spot-type-filter-menu[b-qqvcvadbeg] {
    position: relative;
    z-index: var(--z-map-filter-menu);
    max-height: min(50vh, 22rem);
    max-height: min(50dvh, 22rem);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.65rem;
    border: 1px solid var(--color-shadow-soft);
    border-radius: 0.65rem;
    background: var(--surface-glass);
    box-shadow: 0 0.4rem 1.25rem var(--color-shadow-strong);
    backdrop-filter: blur(8px);
}

.spot-type-filter-divider[b-qqvcvadbeg] {
    width: 100%;
    margin: 0.35rem 0;
    border: 0;
    border-top: 1px solid var(--color-shadow-soft);
}

.spot-type-toggle-row[b-qqvcvadbeg] {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.4rem 0.35rem;
    border: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

    .spot-type-toggle-row:hover[b-qqvcvadbeg] {
        border-radius: 0.375rem;
        background: var(--color-overlay-hover);
    }

.spot-type-toggle-label[b-qqvcvadbeg] {
    min-width: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.spot-type-color-dot[b-qqvcvadbeg] {
    width: 0.75rem;
    height: 0.75rem;
    flex: 0 0 0.75rem;
    border: 1px solid var(--color-shadow-soft);
    border-radius: 50%;
}

.spot-type-icon[b-qqvcvadbeg] {
    color-scheme: light dark;
    forced-color-adjust: none;
    width: 1.5rem;
    height: 1.5rem;
    flex: 0 0 1.5rem;
    object-fit: contain;
}

.spot-type-switch[b-qqvcvadbeg] {
    position: relative;
    width: 2.75rem;
    height: 1.5rem;
    flex: 0 0 2.75rem;
    border-radius: 999px;
    background: var(--color-border-strong);
    transition: background-color 0.15s ease-in-out;
}

    .spot-type-switch.is-on[b-qqvcvadbeg] {
        background: var(--color-primary);
    }

.spot-type-switch-knob[b-qqvcvadbeg] {
    position: absolute;
    top: 0.15rem;
    left: 0.15rem;
    width: 1.2rem;
    height: 1.2rem;
    border-radius: 50%;
    background: var(--color-surface);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    transition: transform 0.15s ease-in-out;
}

.spot-type-switch.is-on .spot-type-switch-knob[b-qqvcvadbeg] {
    transform: translateX(1.25rem);
}
/* /Components/Map/SpotEditor.razor.rz.scp.css */
.form-group[b-7gseiotc4l] {
    margin-bottom: 0.75rem;
}

.form-group label[b-7gseiotc4l] {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.spot-type-prompt[b-7gseiotc4l] {
    margin: -0.35rem 0 0.75rem;
    color: var(--color-muted);
}

.spot-type-options[b-7gseiotc4l] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
}

.spot-type-option[b-7gseiotc4l] {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 5.25rem;
    align-items: center;
    column-gap: 0.6rem;
    padding: 0.65rem 0.7rem;
    border: 2px solid var(--spot-type-color, var(--color-border-strong));
    border-radius: 0.75rem;
    color: var(--color-text);
    background: var(--color-surface);
    text-align: left;
    transition:
        transform 120ms ease,
        box-shadow 120ms ease,
        background-color 120ms ease;
}

.spot-type-option:hover[b-7gseiotc4l] {
    background: color-mix(
        in srgb,
        var(--spot-type-color, var(--color-border-strong)) 8%,
        var(--color-surface));
    box-shadow: 0 0.5rem 1.25rem var(--color-shadow-soft);
    transform: translateY(-2px);
}

.spot-type-option:active[b-7gseiotc4l] {
    transform: translateY(0);
}

.spot-type-option:focus-visible[b-7gseiotc4l] {
    outline: 3px solid color-mix(
        in srgb,
        var(--spot-type-color, var(--color-primary)) 45%,
        transparent);
    outline-offset: 2px;
}

.spot-type-option-icon[b-7gseiotc4l] {
    color-scheme: light dark;
    forced-color-adjust: none;
    display: grid;
    grid-row: 1 / 3;
    width: 3rem;
    height: 3rem;
    place-items: center;
}

.spot-type-option-icon img[b-7gseiotc4l] {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.spot-type-option-name[b-7gseiotc4l] {
    align-self: end;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.15;
}

.spot-type-option-description[b-7gseiotc4l] {
    align-self: start;
    margin-top: 0.15rem;
    color: var(--color-muted);
    font-size: 0.75rem;
    line-height: 1.15;
}

.spot-type-cancel[b-7gseiotc4l] {
    width: 100%;
    margin-top: 0.75rem;
}

.coordinates[b-7gseiotc4l] {
    margin: 0.75rem 0;
    font-size: 0.85rem;
    color: var(--color-muted);
}

.pin-actions[b-7gseiotc4l] {
    display: flex;
    gap: 0.5rem;
}

.spot-editor-backdrop[b-7gseiotc4l] {
    position: fixed;
    inset: var(--app-header-height, 4rem) 0 0;
    z-index: var(--z-editor-backdrop);
    border: 0;
    background: var(--color-backdrop);
}

.spot-editor-sheet[b-7gseiotc4l] {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: var(--z-editor);
    max-height: min(82dvh, 42rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.75rem 1rem calc(1rem + env(safe-area-inset-bottom));
    border-radius: 1rem 1rem 0 0;
    background: var(--color-surface);
    box-shadow: 0 -0.75rem 2rem var(--color-shadow-strong);
}

.spot-editor-handle[b-7gseiotc4l] {
    width: 2.75rem;
    height: 0.3rem;
    margin: 0 auto 0.85rem;
    border-radius: 999px;
    background: var(--color-border-strong);
}

.spot-editor-sheet h4[b-7gseiotc4l] {
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .spot-editor-sheet[b-7gseiotc4l] {
        right: auto;
        bottom: 1rem;
        left: 50%;
        width: min(30rem, calc(100% - 2rem));
        padding: 1rem;
        border-radius: 1rem;
        transform: translateX(-50%);
    }
}
/* /Components/ThemeToggle.razor.rz.scp.css */
.theme-toggle[b-eprjy1okff] {
    width: 100%;
    min-height: var(--shell-nav-item-height, 3.25rem);
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: var(--shell-nav-item-padding, 0.75rem) 0.9rem;
    border: 0;
    border-radius: 0.7rem;
    background: transparent;
    color: var(--color-text);
    font: inherit;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.theme-toggle:hover[b-eprjy1okff] {
    background: var(--color-surface-muted);
}

.theme-toggle:focus-visible[b-eprjy1okff] {
    outline: 2px solid var(--color-focus-blue);
    outline-offset: 2px;
}

.theme-toggle[b-eprjy1okff]  .theme-toggle-icon {
    width: var(--shell-nav-icon-size, 1.35rem);
    height: var(--shell-nav-icon-size, 1.35rem);
    flex: 0 0 var(--shell-nav-icon-size, 1.35rem);
    color: var(--color-primary-emphasis);
}

.theme-toggle-label[b-eprjy1okff] {
    min-width: 0;
    flex: 1;
}

.theme-toggle-track[b-eprjy1okff] {
    position: relative;
    width: 2.6rem;
    height: 1.45rem;
    flex: 0 0 2.6rem;
    border: 1px solid var(--color-border-strong);
    border-radius: 999px;
    background: var(--color-surface-muted);
    transition: background-color 0.15s ease, border-color 0.15s ease;
}

.theme-toggle-thumb[b-eprjy1okff] {
    position: absolute;
    top: 0.15rem;
    left: 0.15rem;
    width: 1.05rem;
    height: 1.05rem;
    border-radius: 50%;
    background: var(--color-muted);
    box-shadow: 0 1px 2px var(--color-shadow-soft);
    transition: background-color 0.15s ease, transform 0.15s ease;
}

.theme-toggle[aria-checked="true"] .theme-toggle-track[b-eprjy1okff] {
    border-color: var(--color-primary);
    background: var(--color-primary);
}

.theme-toggle[aria-checked="true"] .theme-toggle-thumb[b-eprjy1okff] {
    background: #fff;
    transform: translateX(1.15rem);
}
/* /Components/Toast/Toast.razor.rz.scp.css */
.toast-stack[b-8j6vsxc7jr] {
    position: fixed;
    top: max(0.75rem, env(safe-area-inset-top));
    right: max(0.75rem, env(safe-area-inset-right));
    z-index: var(--z-toast);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: min(24rem, calc(100% - 2rem));
    pointer-events: none;
}

.toast-item[b-8j6vsxc7jr] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--toast-border);
    border-radius: 0.6rem;
    background: var(--toast-background);
    background: color-mix(
        in srgb,
        var(--toast-background) 68%,
        transparent);
    color: var(--toast-text);
    box-shadow: 0 0.5rem 1.5rem var(--color-shadow-strong);
    backdrop-filter: blur(0.45rem);
    pointer-events: auto;
}

.toast-item--error[b-8j6vsxc7jr] {
    --toast-border: var(--color-alert-danger-border);
    --toast-background: var(--color-alert-danger-bg);
    --toast-text: var(--color-alert-danger-text);
}

.toast-item--success[b-8j6vsxc7jr] {
    --toast-border: var(--color-alert-success-border);
    --toast-background: var(--color-alert-success-bg);
    --toast-text: var(--color-alert-success-text);
}

.toast-item--warning[b-8j6vsxc7jr] {
    --toast-border: var(--color-alert-warning-border);
    --toast-background: var(--color-alert-warning-bg);
    --toast-text: var(--color-alert-warning-text);
}

.toast-message[b-8j6vsxc7jr] {
    flex: 1 1 auto;
    font-size: 0.9rem;
    line-height: 1.35;
}

.toast-dismiss[b-8j6vsxc7jr] {
    --icon-button-size: 1.5rem;
    --icon-button-hover-bg: color-mix(
        in srgb,
        var(--toast-text) 12%,
        transparent);
    flex: 0 0 auto;
    color: inherit;
    font-size: 1.1rem;
    line-height: 1;
}

    .toast-dismiss:hover[b-8j6vsxc7jr] {
        background: var(--icon-button-hover-bg);
    }

    .toast-dismiss:focus-visible[b-8j6vsxc7jr] {
        outline: 2px solid var(--toast-text);
        outline-offset: 2px;
    }
/* /MainLayout.razor.rz.scp.css */
.app-layout[b-0pow1vhjqx] {
    /*
     * The header consists of a 4rem content area plus an optional
     * safe area at the top of devices with a notch.
     */
    --app-header-height: calc(4rem + env(safe-area-inset-top));
    --map-overlay-inline-edge: 0px;
    width: 100%;
    max-width: var(--app-max-width);
    min-height: 100vh;
    min-height: 100dvh;
    margin-inline: auto;
    background: var(--color-surface-muted);
    box-shadow: 0 0 1.5rem rgba(0, 0, 0, 0.08);
}

.app-header[b-0pow1vhjqx] {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    width: 100%;
    height: var(--app-header-height);
    box-sizing: border-box;
    display: grid;
    grid-template-columns: 2.75rem minmax(0, 1fr) 2.75rem;
    align-items: center;
    gap: 0.5rem;
    /*
     * The safe-area padding is included in --app-header-height.
     * The remaining height is the regular 4rem top bar.
     */
    padding: env(safe-area-inset-top) max(1rem, env(safe-area-inset-right)) 0 max(1rem, env(safe-area-inset-left));
    border-bottom: 1px solid var(--color-border);
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
}

.menu-button[b-0pow1vhjqx] {
    --icon-button-size: 2.75rem;
    --icon-size: 1.5rem;
}

.app-header-title[b-0pow1vhjqx] {
    min-width: 0;
    overflow: hidden;
    color: var(--color-ink);
    font-size: 1.15rem;
    font-weight: 700;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.app-header-actions[b-0pow1vhjqx] {
    width: 2.75rem;
    height: 2.75rem;
    display: grid;
    place-items: center;
}

    .app-header-actions[b-0pow1vhjqx]  .header-spots-button {
        --icon-button-size: 2.75rem;
        --icon-size: 1.5rem;
        --icon-button-hover-bg: var(--color-primary-tint-weak);
        position: relative;
        overflow: visible;
    }

        .app-header-actions[b-0pow1vhjqx]  .header-spots-button:hover,
        .app-header-actions[b-0pow1vhjqx]  .header-spots-button.is-open {
            background: var(--color-primary-tint-weak);
            color: var(--color-primary-emphasis);
        }

    .app-header-actions[b-0pow1vhjqx]  .header-spots-count {
        position: absolute;
        top: 0.05rem;
        right: -0.1rem;
        min-width: 1.15rem;
        height: 1.15rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0 0.2rem;
        border: 2px solid var(--color-surface);
        border-radius: 999px;
        background: var(--color-primary);
        color: #fff;
        font-size: 0.625rem;
        font-weight: 700;
        line-height: 1;
        box-sizing: border-box;
        pointer-events: none;
    }

.app-content[b-0pow1vhjqx] {
    /*
     * Child pages inherit these values. FestivalDetails.razor uses them to cancel
     * the normal content padding only on small screens.
     */
    --app-content-padding-top: 1rem;
    --app-content-padding-right: max( 1rem, env(safe-area-inset-right) );
    --app-content-padding-bottom: max( 1rem, env(safe-area-inset-bottom) );
    --app-content-padding-left: max( 1rem, env(safe-area-inset-left) );
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    padding: var(--app-content-padding-top) var(--app-content-padding-right) var(--app-content-padding-bottom) var(--app-content-padding-left);
}

@media (min-width: 992px) {
    .app-content[b-0pow1vhjqx] {
        --app-content-padding-top: 1.5rem;
        --app-content-padding-right: 2rem;
        --app-content-padding-bottom: 2rem;
        --app-content-padding-left: 2rem;
    }
}

@media (min-width: 53rem) {
    .app-layout[b-0pow1vhjqx] {
        --map-overlay-inline-edge: max(0px, calc((100vw - var(--app-max-width)) / 2));
        border-right: 1px solid var(--color-border-strong);
        border-left: 1px solid var(--color-border-strong);
    }
}
/* /NavMenu.razor.rz.scp.css */
.nav-backdrop[b-1i591ikpcw] {
    position: fixed;
    inset: 0;
    z-index: var(--z-nav-backdrop);
    border: 0;
    background: var(--color-backdrop-strong);
}

.mobile-drawer[b-1i591ikpcw] {
    --shell-nav-icon-size: 1.45rem;
    --shell-nav-item-height: 3.25rem;
    --shell-nav-item-padding: 0.75rem;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: var(--z-nav);
    width: min(84vw, 20rem);
    display: flex;
    flex-direction: column;
    padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
    background: var(--color-surface);
    box-shadow: 1rem 0 2.5rem var(--color-shadow-strong);
    transform: translateX(-105%);
    visibility: hidden;
    transition: transform 0.2s ease, visibility 0.2s ease;
}

    .mobile-drawer.is-open[b-1i591ikpcw] {
        transform: translateX(0);
        visibility: visible;
    }

.drawer-header[b-1i591ikpcw] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 3rem;
    padding-bottom: 0.75rem;
}

.drawer-close[b-1i591ikpcw] {
    --icon-button-size: 2.5rem;
    --icon-size: 1.4rem;
}

.drawer-user[b-1i591ikpcw] {
    margin: 0.5rem 0 1rem;
}

.drawer-secondary-nav[b-1i591ikpcw] {
    margin-bottom: 0.25rem;
    padding-top: 0.25rem;
}

.drawer-theme-toggle[b-1i591ikpcw] {
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
}

@media (min-width: 53rem) {
    .mobile-drawer[b-1i591ikpcw] {
        left: max( 0px, calc((100vw - var(--app-max-width)) / 2) );
    }
}
/* /Pages/Admin/AdminLayout.razor.rz.scp.css */
/*
 * Unlike MainLayout, the admin shell intentionally opts out of
 * --app-max-width: it is a wide, desktop-optimized surface with a
 * persistent left sidebar rather than a phone-width column.
 */
.admin-layout[b-uyk671tosk] {
    --app-header-height: 4rem;
    --map-overlay-inline-edge: 0px;
    display: flex;
    min-height: 100vh;
    min-height: 100dvh;
    background: var(--color-surface-muted);
}

.admin-sidebar[b-uyk671tosk] {
    position: sticky;
    top: 0;
    flex: 0 0 16rem;
    width: 16rem;
    height: 100vh;
    height: 100dvh;
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    padding: 1.5rem 1rem;
    border-right: 1px solid var(--color-border);
    background: var(--color-surface);
}

.admin-brand[b-uyk671tosk] {
    margin: 0 0.5rem 1.5rem;
}

.admin-user[b-uyk671tosk] {
    margin: 0 0 1rem;
}

.admin-secondary-nav[b-uyk671tosk] {
    margin-bottom: 0.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--color-border);
}

.admin-main[b-uyk671tosk] {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.admin-header[b-uyk671tosk] {
    position: sticky;
    top: 0;
    z-index: var(--z-sticky);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4rem;
    box-sizing: border-box;
    padding: 0 2rem;
    border-bottom: 1px solid var(--color-border);
    background: var(--surface-glass);
    backdrop-filter: blur(12px);
}

.admin-header-title[b-uyk671tosk] {
    color: var(--color-ink);
    font-size: 1.15rem;
    font-weight: 700;
}

.admin-header-actions[b-uyk671tosk] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-content[b-uyk671tosk] {
    flex: 1;
    box-sizing: border-box;
    padding: 2rem;
}

/*
 * Shared chrome for admin PAGE content, rendered through @Body.
 * Centralized here so the admin pages (Festivals, Users, Festival
 * Create) don't each redeclare the same header/table/form styles.
 * Buttons and card surfaces use the global app primitives.
 * ::deep reaches past the child page's own CSS-isolation scope.
 * .form-group (and its descendants) is also used by the map's spot
 * editor under MainLayout, so those rules are additionally anchored
 * to .admin-content to keep them from leaking outside this layout.
 */

[b-uyk671tosk] .admin-festivals-page,
[b-uyk671tosk] .admin-users-page {
    width: 100%;
    max-width: 64rem;
}

[b-uyk671tosk] .admin-festival-form-page {
    width: 100%;
    max-width: 40rem;
}

[b-uyk671tosk] .admin-page-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

    [b-uyk671tosk] .admin-page-header h1 {
        margin: 0 0 0.35rem;
        color: var(--color-ink);
        font-size: 1.75rem;
        font-weight: 700;
    }

    [b-uyk671tosk] .admin-page-header p {
        margin: 0;
        color: var(--color-muted);
    }

[b-uyk671tosk] .admin-status {
    padding: 2rem 1rem;
    color: var(--color-muted);
    text-align: center;
}

[b-uyk671tosk] .admin-table-container {
    overflow: hidden;
}

[b-uyk671tosk] .admin-table {
    width: 100%;
    border-collapse: collapse;
}

    [b-uyk671tosk] .admin-table th,
    [b-uyk671tosk] .admin-table td {
        padding: 0.85rem 1.25rem;
        text-align: left;
    }

    [b-uyk671tosk] .admin-table thead th {
        border-bottom: 1px solid var(--color-border);
        background: var(--color-surface-muted);
        color: var(--color-muted);
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.03em;
        text-transform: uppercase;
    }

    [b-uyk671tosk] .admin-table tbody tr:not(:last-child) td {
        border-bottom: 1px solid var(--color-surface-muted);
    }

    [b-uyk671tosk] .admin-table tbody tr:hover td {
        background: var(--color-surface-muted);
    }

    [b-uyk671tosk] .admin-table td {
        color: var(--color-text);
    }

    [b-uyk671tosk] .admin-table td.admin-table-primary {
        color: var(--color-ink);
        font-weight: 600;
    }

[b-uyk671tosk] .admin-form-card {
    padding: 1.75rem;
}

[b-uyk671tosk] .admin-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.admin-content[b-uyk671tosk]  .form-group {
    margin-bottom: 1.1rem;
}

    .admin-content[b-uyk671tosk]  .form-group label {
        display: block;
        margin-bottom: 0.35rem;
        color: var(--color-text);
        font-size: 0.9rem;
        font-weight: 600;
    }

    .admin-content[b-uyk671tosk]  .form-group .validation-message {
        display: block;
        margin-top: 0.3rem;
        color: var(--color-danger);
        font-size: 0.85rem;
    }

[b-uyk671tosk] .admin-form-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

@media (max-width: 575.98px) {
    [b-uyk671tosk] .admin-form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .admin-layout[b-uyk671tosk] {
        --app-header-height: 0px;
        display: block;
    }

    .admin-sidebar[b-uyk671tosk] {
        position: static;
        flex: none;
        width: 100%;
        height: auto;
        padding: 0.75rem 1rem;
        border-right: 0;
        border-bottom: 1px solid var(--color-border);
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        grid-template-areas:
            "brand logout"
            "user user"
            "nav nav";
        gap: 0.65rem;
    }

    .admin-brand[b-uyk671tosk] {
        grid-area: brand;
        min-width: 0;
        margin: 0;
    }

        .admin-brand span[b-uyk671tosk] {
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

    .admin-user[b-uyk671tosk] {
        grid-area: user;
        min-width: 0;
        margin: 0;
        padding: 0.6rem 0.75rem;
    }

    .admin-nav[b-uyk671tosk] {
        grid-area: nav;
        min-width: 0;
        flex-direction: row;
    }

        .admin-nav[b-uyk671tosk]  a {
            min-width: 0;
            flex: 1 1 0;
            justify-content: center;
        }

    .admin-sidebar-spacer[b-uyk671tosk] {
        display: none;
    }

    .admin-sidebar[b-uyk671tosk]  .admin-logout {
        grid-area: logout;
        align-self: center;
        width: auto;
    }

    .admin-main[b-uyk671tosk] {
        width: 100%;
        min-width: 0;
    }

    .admin-header[b-uyk671tosk] {
        padding-inline: 1rem;
    }

    .admin-content[b-uyk671tosk] {
        min-width: 0;
        padding: 1rem;
    }

    [b-uyk671tosk] .admin-page-header {
        flex-direction: column;
        align-items: stretch;
    }

    [b-uyk671tosk] .admin-table-container {
        overflow-x: auto;
        overscroll-behavior-inline: contain;
    }
}
/* /Pages/Admin/Festivals/AdminFestivalDetails.razor.rz.scp.css */
.admin-festival-detail-page[b-lavfxkpdqb] {
    width: 100%;
    max-width: 72rem;
}

.admin-header-actions[b-lavfxkpdqb] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.admin-festival-map[b-lavfxkpdqb] {
    --surface-card-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.08);
    --admin-map-actions-bottom: 3rem;
    --map-locate-button-bottom: calc(var(--admin-map-actions-bottom) + 0.25rem);
    position: relative;
    overflow: hidden;
}

.admin-map-actions[b-lavfxkpdqb] {
    position: absolute;
    bottom: var(--admin-map-actions-bottom);
    left: 50%;
    z-index: var(--z-map-action);
    display: flex;
    gap: 0.65rem;
    transform: translateX(-50%);
}

.admin-map-action-button[b-lavfxkpdqb] {
    min-width: 9rem;
    min-height: 3.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border-radius: 999px;
    font-weight: 700;
    box-shadow: var(--shadow-floating);
}

    .admin-map-action-button[b-lavfxkpdqb]  svg {
        width: 1.15rem;
        height: 1.15rem;
    }

@media (max-width: 575.98px) {
    .admin-map-actions[b-lavfxkpdqb] {
        width: calc(100% - 2rem);
    }

    .admin-map-action-button[b-lavfxkpdqb] {
        min-width: 0;
        flex: 1 1 0;
    }
}
/* /Pages/Admin/Festivals/AdminFestivals.razor.rz.scp.css */
.admin-selectable-row[b-r9c8j7cjps] {
    cursor: pointer;
}

    .admin-selectable-row:focus-visible[b-r9c8j7cjps] {
        outline: 2px solid var(--color-focus-blue);
        outline-offset: -2px;
    }

.admin-festival-link[b-r9c8j7cjps] {
    color: inherit;
    text-decoration: none;
}

    .admin-festival-link:hover[b-r9c8j7cjps] {
        color: var(--color-primary-emphasis);
        text-decoration: underline;
    }

.admin-table-action[b-r9c8j7cjps] {
    width: 2rem;
    color: var(--color-muted);
    text-align: right;
}

    .admin-table-action[b-r9c8j7cjps]  svg {
        display: block;
        width: 1.15rem;
        height: 1.15rem;
        margin-left: auto;
    }
/* /Pages/Admin/Festivals/Components/AreaListOverlay.razor.rz.scp.css */
.areas-empty-message[b-9fzfflhh76] {
    margin: 1rem 0;
    color: var(--color-muted);
}

.area-list[b-9fzfflhh76] {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .area-list li[b-9fzfflhh76] {
        position: relative;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.4rem;
        padding: 0.9rem 0 0.9rem 1.25rem;
        border-bottom: 1px solid var(--color-surface-muted);
    }

.area-color[b-9fzfflhh76] {
    position: absolute;
    top: 1.15rem;
    left: 0;
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
}

.area-name[b-9fzfflhh76] {
    color: var(--color-ink-strong);
    font-weight: 700;
}

.area-edit-button[b-9fzfflhh76] {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-link-blue);
    font: inherit;
    font-size: 0.82rem;
    text-decoration: underline;
    cursor: pointer;
}

    .area-edit-button:disabled[b-9fzfflhh76] {
        color: var(--color-muted);
        text-decoration: none;
        cursor: not-allowed;
    }

.area-delete-button[b-9fzfflhh76] {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--color-danger);
    font: inherit;
    font-size: 0.82rem;
    text-decoration: underline;
    cursor: pointer;
}

.area-geometry-warning[b-9fzfflhh76] {
    flex: 0 0 100%;
    color: var(--color-danger);
    font-size: 0.78rem;
    line-height: 1.3;
}
/* /Pages/Admin/Festivals/Components/LocationPicker.razor.rz.scp.css */
.location-picker[b-nputpm1xvq] {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.location-picker-search[b-nputpm1xvq] {
    max-width: 28rem;
}

.location-picker-results[b-nputpm1xvq] {
    max-height: min(50vh, 14rem);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0.5rem;
    border: 1px solid var(--color-shadow-soft);
    border-radius: 0.5rem;
    background: var(--color-surface);
    box-shadow: 0 0.2rem 0.8rem rgba(0, 0, 0, 0.1);
}

.location-picker-result-row[b-nputpm1xvq] {
    padding: 0.4rem 0.5rem;
    border: 0;
    border-radius: 0.375rem;
    background: transparent;
    text-align: left;
    font-size: 0.85rem;
    cursor: pointer;
}

    .location-picker-result-row:hover[b-nputpm1xvq] {
        background: var(--color-overlay-hover);
    }

.location-picker-map[b-nputpm1xvq] {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 0.5rem;
}

.location-picker-footer[b-nputpm1xvq] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.location-picker-readout[b-nputpm1xvq] {
    color: var(--color-muted);
    font-size: 0.85rem;
    font-variant-numeric: tabular-nums;
}
/* /Pages/Auth/AuthLayout.razor.rz.scp.css */
.auth-layout[b-e6c5c05wg8] {
    min-height: 100svh;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    place-items: center;
    padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
    background: var(--color-surface);
}

.auth-shell[b-e6c5c05wg8] {
    width: 100%;
    max-width: 28rem;
    min-width: 0;
}

/*
 * The actual page markup is supplied through @Body.
 * ::deep allows the isolated layout CSS to reach that markup.
 */

[b-e6c5c05wg8] .auth-page {
    min-height: calc(100svh - 2rem);
    display: flex;
    flex-direction: column;
    padding: 0.5rem;
}

[b-e6c5c05wg8] .auth-brand {
    margin: 0.75rem 0 2rem;
    text-align: center;
}

[b-e6c5c05wg8] .auth-logo {
    display: block;
    width: min(72%, 15rem);
    max-height: 12rem;
    margin: 0 auto;
    object-fit: contain;
}

[b-e6c5c05wg8] .auth-intro {
    margin-bottom: 1.75rem;
    text-align: center;
}

    [b-e6c5c05wg8] .auth-intro h1 {
        margin: 0 0 0.35rem;
        font-size: 1.85rem;
        font-weight: 700;
        color: var(--color-ink);
    }

    [b-e6c5c05wg8] .auth-intro p {
        max-width: 21rem;
        margin: 0 auto;
        color: var(--color-ink-strong);
        font-size: 1rem;
        line-height: 1.4;
    }

[b-e6c5c05wg8] .auth-form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

[b-e6c5c05wg8] .auth-field {
    margin-bottom: 1rem;
}

[b-e6c5c05wg8] .auth-field-shell {
    min-height: 3.75rem;
    display: flex;
    align-items: center;
    border: 2px solid var(--color-border);
    border-radius: 0.8rem;
    background: var(--color-surface);
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

    [b-e6c5c05wg8] .auth-field-shell:focus-within {
        border-color: var(--color-primary);
        box-shadow: 0 0 0 0.2rem rgba(23, 129, 51, 0.12);
    }

[b-e6c5c05wg8] .auth-field-icon {
    width: 3.25rem;
    flex: 0 0 3.25rem;
    display: grid;
    place-items: center;
    color: var(--color-ink-strong);
}

    [b-e6c5c05wg8] .auth-field-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }

[b-e6c5c05wg8] .auth-input {
    min-width: 0;
    flex: 1;
    min-height: 3.5rem;
    padding: 0.75rem 0.75rem 0.75rem 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--color-ink-strong);
    font: inherit;
    font-size: 1rem;
    font-weight: 500;
}

    [b-e6c5c05wg8] .auth-input::placeholder {
        color: var(--color-muted);
        opacity: 1;
    }

[b-e6c5c05wg8] select.auth-input {
    padding-right: 2.5rem;
}

[b-e6c5c05wg8] .auth-field-action {
    width: 3.25rem;
    min-height: 3.5rem;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    color: var(--color-ink-strong);
    cursor: pointer;
}

    [b-e6c5c05wg8] .auth-field-action svg {
        width: 1.5rem;
        height: 1.5rem;
    }

[b-e6c5c05wg8] .auth-validation {
    display: block;
    margin: 0.3rem 0.25rem 0;
    color: var(--color-danger);
    font-size: 0.82rem;
}

[b-e6c5c05wg8] .auth-field-hint {
    margin: 0.3rem 0.25rem 0;
    color: var(--color-muted);
    font-size: 0.82rem;
}

[b-e6c5c05wg8] .auth-form-spacer {
    flex: 1 1 3rem;
    min-height: 1.5rem;
}

[b-e6c5c05wg8] .auth-privacy-notice {
    margin: 0 0.5rem 1rem;
    color: var(--color-muted);
    font-size: 0.84rem;
    line-height: 1.45;
    text-align: center;
}

    [b-e6c5c05wg8] .auth-privacy-notice a {
        font-weight: 600;
    }

[b-e6c5c05wg8] .auth-footer {
    margin-top: 1.25rem;
    text-align: center;
}

    [b-e6c5c05wg8] .auth-footer a {
        color: var(--color-muted);
        font-size: 0.88rem;
        font-weight: 600;
        text-decoration: none;
    }

        [b-e6c5c05wg8] .auth-footer a:hover {
            color: var(--color-link-blue-dark);
            text-decoration: underline;
        }

        [b-e6c5c05wg8] .auth-footer a:focus-visible {
            border-radius: 0.2rem;
            outline: 2px solid var(--color-focus-blue);
            outline-offset: 0.2rem;
        }

[b-e6c5c05wg8] .auth-separator {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    color: var(--color-ink-strong);
}

    [b-e6c5c05wg8] .auth-separator::before,
    [b-e6c5c05wg8] .auth-separator::after {
        content: "";
        flex: 1;
        height: 2px;
        background: var(--color-border-strong);
    }

[b-e6c5c05wg8] .auth-alert {
    margin-bottom: 1rem;
    padding: 0.75rem 0.9rem;
    border-radius: 0.6rem;
    font-size: 0.9rem;
}

[b-e6c5c05wg8] .auth-alert-error {
    border: 1px solid var(--color-alert-danger-border);
    background: var(--color-alert-danger-bg);
    color: var(--color-alert-danger-text);
}

[b-e6c5c05wg8] .auth-alert-list {
    margin: 0;
    padding-left: 1.1rem;
}

[b-e6c5c05wg8] .auth-alert-list li + li {
    margin-top: 0.35rem;
}

[b-e6c5c05wg8] .auth-alert-success {
    border: 1px solid var(--color-alert-success-border);
    background: var(--color-alert-success-bg);
    color: var(--color-alert-success-text);
}

[b-e6c5c05wg8] .route-loading {
    padding: 3rem 0;
    text-align: center;
    color: var(--color-muted);
}

@media (min-width: 576px) {
    .auth-shell[b-e6c5c05wg8] {
        padding: 1.25rem;
        border: 1px solid var(--color-border);
        border-radius: 1.5rem;
        background: var(--color-surface);
        box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08);
    }

    [b-e6c5c05wg8] .auth-page {
        min-height: 42rem;
    }
}
/* /Pages/Festivals/FestivalDetails.razor.rz.scp.css */
.map-page[b-a0h6galqm9] {
    --map-add-spot-button-bottom: calc(2.75rem + env(safe-area-inset-bottom));
    --map-locate-button-bottom: calc(var(--map-add-spot-button-bottom) + 0.375rem);
    position: relative;
    min-width: 0;
    box-sizing: border-box;
    padding-bottom: 0;
}

.map-add-spot-button[b-a0h6galqm9] {
    position: fixed;
    left: 50%;
    bottom: var(--map-add-spot-button-bottom);
    z-index: var(--z-floating-action);
    min-width: 11rem;
    min-height: 3.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding-inline: 1.4rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: var(--shadow-floating);
    transform: translateX(-50%);
}

    .map-add-spot-button[b-a0h6galqm9]  svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .map-add-spot-button:hover:not(:disabled)[b-a0h6galqm9] {
        transform: translateX(-50%) translateY(-1px);
    }

    .map-add-spot-button:active:not(:disabled)[b-a0h6galqm9] {
        transform: translateX(-50%) translateY(0);
    }

/*
 * Mobile:
 * Cancel MainLayout's normal content padding so the map becomes
 * full-bleed and occupies exactly the area below the header.
 */
@media (max-width: 767.98px) {
    .map-page[b-a0h6galqm9] {
        width: calc( 100% + var(--app-content-padding-left, 1rem) + var(--app-content-padding-right, 1rem) );
        height: calc( 100vh - var(--app-header-height, 4rem) );
        height: calc( 100dvh - var(--app-header-height, 4rem) );
        margin-top: calc( 0px - var(--app-content-padding-top, 1rem) );
        margin-right: calc( 0px - var(--app-content-padding-right, 1rem) );
        margin-bottom: calc( 0px - var(--app-content-padding-bottom, 1rem) );
        margin-left: calc( 0px - var(--app-content-padding-left, 1rem) );
        padding: 0;
        overflow: hidden;
    }
}

/* Keep some breathing room around the map on larger screens. */
@media (min-width: 768px) {
    .map-page[b-a0h6galqm9] {
        padding-bottom: 1rem;
    }
}
/* /Pages/Festivals/Festivals.razor.rz.scp.css */
.festival-selection-page[b-g4hbx9q4md] {
    width: min(100%, 48rem);
    margin: 0 auto;
}

.festival-selection-header[b-g4hbx9q4md] {
    margin: 1rem 0 1.5rem;
    text-align: center;
}

    .festival-selection-header h1[b-g4hbx9q4md] {
        margin-bottom: 0.4rem;
        color: var(--color-ink);
        font-size: clamp(1.75rem, 7vw, 2.4rem);
        font-weight: 700;
    }

    .festival-selection-header p[b-g4hbx9q4md] {
        max-width: 28rem;
        margin: 0 auto;
        color: var(--color-muted);
        line-height: 1.45;
    }

.festival-selection-status[b-g4hbx9q4md] {
    padding: 2rem 1rem;
    color: var(--color-muted);
    text-align: center;
}

.festival-card-list[b-g4hbx9q4md] {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.festival-card[b-g4hbx9q4md] {
    --surface-card-border: var(--color-surface-muted);
    --surface-card-radius: 1.15rem;
    overflow: hidden;
}

.festival-card-image[b-g4hbx9q4md] {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7;
    object-fit: cover;
    background: var(--color-surface-muted);
}

.festival-card-content[b-g4hbx9q4md] {
    padding: 1rem;
}

    .festival-card-content h2[b-g4hbx9q4md] {
        margin: 0 0 0.75rem;
        color: var(--color-ink-strong);
        font-size: 1.25rem;
        font-weight: 700;
    }

.festival-card-meta[b-g4hbx9q4md] {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.25rem;
}

.festival-meta-row[b-g4hbx9q4md] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-muted);
    font-size: 0.95rem;
}

    .festival-meta-row[b-g4hbx9q4md]  svg {
        width: 1.15rem;
        height: 1.15rem;
        flex: 0 0 1.15rem;
        color: var(--color-muted);
    }

@media (min-width: 768px) {
    .festival-card-list[b-g4hbx9q4md] {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
/* /Pages/Info/AboutContent.razor.rz.scp.css */
.about-page[b-afl9z59sbb] {
    width: min(100%, 40rem);
    margin: 0 auto;
}

.about-hero[b-afl9z59sbb] {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
}

.about-logo[b-afl9z59sbb] {
    width: 4.5rem;
    height: 4.5rem;
    flex: 0 0 4.5rem;
    border-radius: 1rem;
    object-fit: cover;
}

.about-hero h1[b-afl9z59sbb] {
    margin: 0 0 0.35rem;
    color: var(--color-ink);
    font-size: 1.35rem;
    font-weight: 700;
}

.about-hero p[b-afl9z59sbb],
.about-section-heading p[b-afl9z59sbb] {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.45;
}

.about-section[b-afl9z59sbb] {
    margin-top: 1.75rem;
}

.about-section-heading[b-afl9z59sbb] {
    margin: 0 0.75rem 0.75rem;
}

.about-section-heading h2[b-afl9z59sbb] {
    margin: 0 0 0.2rem;
    color: var(--color-ink);
    font-size: 1.05rem;
    font-weight: 700;
}

.about-section-heading p[b-afl9z59sbb] {
    font-size: 0.88rem;
}

.about-link-list[b-afl9z59sbb] {
    overflow: hidden;
}

.about-link[b-afl9z59sbb] {
    min-height: 4.75rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.85rem 1rem;
    color: var(--color-text);
    text-decoration: none;
    transition: background-color 0.15s ease;
}

.about-link + .about-link[b-afl9z59sbb] {
    border-top: 1px solid var(--color-border);
}

.about-link:hover[b-afl9z59sbb] {
    background: var(--color-primary-tint-weak);
    color: var(--color-text);
}

.about-link:focus-visible[b-afl9z59sbb] {
    position: relative;
    z-index: 1;
    outline: 2px solid var(--color-focus-blue);
    outline-offset: -2px;
}

.about-link-icon[b-afl9z59sbb] {
    width: 2.65rem;
    height: 2.65rem;
    flex: 0 0 2.65rem;
    display: grid;
    place-items: center;
    border-radius: 0.75rem;
    background: var(--color-primary-tint);
    color: var(--color-primary-emphasis);
}

.about-link-icon[b-afl9z59sbb]  svg {
    width: 1.35rem;
    height: 1.35rem;
}

.about-link-copy[b-afl9z59sbb] {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.12rem;
}

.about-link-title[b-afl9z59sbb] {
    color: var(--color-ink);
    font-weight: 650;
}

.about-link-description[b-afl9z59sbb] {
    overflow: hidden;
    color: var(--color-muted);
    font-size: 0.82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.about-link-meta[b-afl9z59sbb] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--color-muted);
}

.about-link-meta[b-afl9z59sbb]  svg {
    width: 1.25rem;
    height: 1.25rem;
    flex: 0 0 1.25rem;
}

@media (max-width: 26rem) {
    .about-hero[b-afl9z59sbb] {
        align-items: flex-start;
    }

    .about-logo[b-afl9z59sbb] {
        width: 3.75rem;
        height: 3.75rem;
        flex-basis: 3.75rem;
    }

}
/* /Pages/Info/InfoBackLink.razor.rz.scp.css */
.info-back-nav[b-adwsn9h1e8] {
    width: min(100%, var(--info-back-max-width));
    margin: 0 auto 0.75rem;
}

.info-back-link[b-adwsn9h1e8] {
    min-height: 2.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: -0.65rem;
    padding: 0.45rem 0.65rem;
    border-radius: 0.65rem;
    color: var(--color-text);
    font-weight: 650;
    text-decoration: none;
}

.info-back-link:hover[b-adwsn9h1e8] {
    background: var(--color-primary-tint-weak);
    color: var(--color-primary-emphasis);
}

.info-back-link:focus-visible[b-adwsn9h1e8] {
    outline: 2px solid var(--color-focus-blue);
    outline-offset: 0.1rem;
}

.info-back-link[b-adwsn9h1e8]  .info-back-icon {
    width: 1.25rem;
    height: 1.25rem;
    transform: rotate(180deg);
}
/* /Pages/Info/LegalDocument.razor.rz.scp.css */
.legal-document[b-d4a1vtyupv] {
    width: min(100%, 48rem);
    box-sizing: border-box;
    margin: 0 auto;
    padding: clamp(1.25rem, 4vw, 2.5rem);
    color: var(--color-text);
    line-height: 1.65;
}

.legal-document[b-d4a1vtyupv]  h1,
.legal-document[b-d4a1vtyupv]  h2,
.legal-document[b-d4a1vtyupv]  h3 {
    color: var(--color-ink);
    line-height: 1.25;
}

.legal-document[b-d4a1vtyupv]  h1 {
    margin: 0 0 1rem;
    font-size: clamp(1.65rem, 6vw, 2.15rem);
}

.legal-document[b-d4a1vtyupv]  h2 {
    margin: 2.5rem 0 0.8rem;
    font-size: clamp(1.25rem, 4.5vw, 1.55rem);
}

.legal-document[b-d4a1vtyupv]  h3 {
    margin: 1.75rem 0 0.65rem;
    font-size: clamp(1.05rem, 4vw, 1.2rem);
}

.legal-document[b-d4a1vtyupv]  p {
    margin: 0 0 1rem;
}

.legal-document[b-d4a1vtyupv]  hr {
    margin: 2rem 0;
    border: 0;
    border-top: 1px solid var(--color-border);
    opacity: 1;
}

.legal-document[b-d4a1vtyupv]  a {
    overflow-wrap: anywhere;
    font-weight: 550;
}

.legal-document[b-d4a1vtyupv]  ul,
.legal-document[b-d4a1vtyupv]  ol {
    margin: 0 0 1.25rem;
    padding-left: 1.4rem;
}

.legal-document[b-d4a1vtyupv]  li + li {
    margin-top: 0.45rem;
}

.legal-document[b-d4a1vtyupv]  blockquote {
    margin: 1.25rem 0;
    padding: 1rem 1.1rem;
    border-left: 0.3rem solid var(--color-primary);
    border-radius: 0 0.75rem 0.75rem 0;
    background: var(--color-primary-tint-weak);
}

.legal-document[b-d4a1vtyupv]  blockquote p:last-child {
    margin-bottom: 0;
}

.legal-document[b-d4a1vtyupv]  pre {
    max-width: 100%;
    margin: 1rem 0 1.25rem;
    padding: 1rem;
    overflow-x: auto;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    background: var(--color-surface-alt);
    color: var(--color-text);
    font-size: 0.82rem;
    line-height: 1.5;
    white-space: pre;
}

.legal-document[b-d4a1vtyupv]  code {
    padding: 0.12rem 0.3rem;
    border-radius: 0.3rem;
    background: var(--color-surface-muted);
    color: var(--color-ink-strong);
    font-size: 0.88em;
}

.legal-document[b-d4a1vtyupv]  pre code {
    padding: 0;
    background: transparent;
    color: inherit;
    font-size: inherit;
}

.legal-document[b-d4a1vtyupv]  .legal-table-scroll {
    max-width: 100%;
    margin: 1rem 0 1.5rem;
    overflow-x: auto;
    border: 1px solid var(--color-border);
    border-radius: 0.75rem;
    background: var(--color-surface);
}

.legal-document[b-d4a1vtyupv]  .legal-table-scroll:focus-visible {
    outline: 2px solid var(--color-focus-blue);
    outline-offset: 0.15rem;
}

.legal-document[b-d4a1vtyupv]  table {
    width: 100%;
    min-width: 40rem;
    margin: 0;
    border-collapse: collapse;
    font-size: 0.88rem;
    line-height: 1.5;
}

.legal-document[b-d4a1vtyupv]  th,
.legal-document[b-d4a1vtyupv]  td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    vertical-align: top;
}

.legal-document[b-d4a1vtyupv]  th {
    background: var(--color-surface-alt);
    color: var(--color-ink);
    font-weight: 700;
}

.legal-document[b-d4a1vtyupv]  tbody tr:last-child td {
    border-bottom: 0;
}

@media (max-width: 36rem) {
    .legal-document[b-d4a1vtyupv] {
        border-right: 0;
        border-left: 0;
        border-radius: 0;
        box-shadow: none;
    }
}
