html, body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    margin: 0;
    background: #f4f6fb;
    color: #212529;
    height: 100%;
    height: 100dvh;
    overflow: hidden;
    overscroll-behavior: none;
}

*, *::before, *::after {
    box-sizing: border-box;
}

.mobile-shell {
    height: 100dvh;
    max-width: 520px;
    margin: 0 auto;
    background: #f4f6fb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.mobile-main {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.page-stack {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.page-fill {
    flex: 1;
    min-height: 0;
    overflow: hidden;
    padding: 16px 20px 20px;
}

.page-fill-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.page-center {
    flex: 1;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
}

.page-content {
    padding: 16px 20px 20px;
    overflow-y: auto;
}

.home-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
    padding: 10px 16px 14px;
}

.home-content .caption-text {
    margin: 0 0 2px;
    flex-shrink: 0;
}

.home-content .hero-text {
    font-size: 20px;
    margin: 0 0 6px;
    flex-shrink: 0;
    line-height: 1.2;
}

.home-content .subhero-text {
    font-size: 16px;
    margin: 0 0 8px;
    flex-shrink: 0;
    line-height: 1.2;
}

.home-content .section-title {
    margin: 2px 0 6px;
    flex-shrink: 0;
}

.home-content .event-list {
    flex: 1 1 auto;
    min-height: 0;
    grid-template-rows: repeat(4, 1fr);
    gap: 8px;
    width: 94%;
    margin: 0 auto;
    padding: 4px 6px;
    box-sizing: border-box;
    overflow: hidden;
    align-content: stretch;
}

.home-content .event-tile {
    min-height: 0;
    padding: 8px 6px;
}

.home-content .event-name {
    font-size: 11px;
    line-height: 1.2;
}

.home-location-footer {
    flex-shrink: 0;
    width: 94%;
    margin: 8px auto 0;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
}

.home-content-location-off .location-alert-card {
    padding: 10px 12px;
}

.home-content-location-off .location-alert-text {
    font-size: 12px;
    line-height: 1.3;
    margin: 0 0 4px;
}

.home-content-location-off .location-alert-hint {
    font-size: 11px;
    line-height: 1.25;
}

.home-content-location-off .home-location-btn {
    min-height: 44px;
    font-size: 15px;
}

.home-content .register-btn {
    flex-shrink: 0;
    margin-top: 8px;
}

.location-alert-card {
    padding: 14px;
    border-radius: 12px;
    background: #fff8e6;
    border: 1px solid #ffe8a3;
    text-align: center;
}

.location-alert-text {
    color: #856404;
    font-size: 13px;
    line-height: 1.4;
    margin: 0 0 8px;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.location-alert-hint {
    color: #6c757d;
    font-size: 12px;
    line-height: 1.35;
    margin: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.home-location-btn {
    width: 100%;
    margin: 0;
}

.card-panel {
    width: 100%;
    background: #fff;
    border: 1px solid #d9dee8;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
    padding: 16px;
}

.login-card,
.install-card {
    margin-top: 0;
}

.install-title {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 10px;
    line-height: 1.35;
}

.install-subtitle {
    font-size: 14px;
    color: #6c757d;
    text-align: center;
    margin: 0 0 18px;
    line-height: 1.45;
}

.install-hint {
    font-size: 13px;
    color: #856404;
    text-align: center;
    margin: 0 0 12px;
    line-height: 1.4;
}

.install-status {
    margin-top: 12px;
}

.install-card .btn {
    margin-bottom: 10px;
}

.install-card .btn:last-child {
    margin-bottom: 0;
}

.btn-outline-action {
    background: #fff;
    color: #2155ff;
    border: 2px solid #2155ff;
}

#app {
    height: 100dvh;
    background: #f4f6fb;
    overflow: hidden;
}

.boot-splash {
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.boot-logo {
    width: min(240px, 75vw);
    max-height: 140px;
    object-fit: contain;
    animation: logo-pulse 1.6s ease-in-out infinite;
}

@keyframes logo-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.72;
        transform: scale(0.96);
    }
}

.lang-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.lang-btn, .flag-btn {
    background: #fff;
    border: 1px solid #d9dee8;
    border-radius: 10px;
    padding: 12px 10px;
    font-size: 14px;
    color: #1a1a1a;
    cursor: pointer;
}

.lang-btn-selected {
    border: 2px solid #2155ff;
}

.flag-row {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px;
    background: #f3f5f9;
    border: 1px solid #e4e8ef;
    border-radius: 999px;
}

.flag-btn {
    padding: 4px;
    border-radius: 999px;
    border: 1px solid transparent;
    background: transparent;
    line-height: 0;
    transition: background 0.15s ease, border-color 0.15s ease;
}

.flag-btn:hover {
    background: #fff;
}

.flag-btn-selected {
    background: #fff;
    border-color: #2155ff;
    box-shadow: 0 1px 2px rgba(33, 85, 255, 0.12);
}

.flag-img {
    width: 26px;
    height: 18px;
    display: block;
    border-radius: 2px;
}

.divider {
    border: none;
    border-top: 1px solid #e9ecef;
    margin: 20px 0;
}

.form-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.field-label {
    font-size: 14px;
    color: #343a40;
    margin: 0;
}

.underline-input {
    width: 100%;
    border: none;
    border-bottom: 2px solid #ced4da;
    background: transparent;
    padding: 8px 0;
    font-size: 16px;
    outline: none;
}

.underline-input:focus {
    border-bottom-color: #2155ff;
}

.password-field {
    position: relative;
    display: flex;
    align-items: center;
}

.password-field .password-input {
    padding-right: 40px;
}

.password-toggle-btn {
    position: absolute;
    right: 0;
    bottom: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 8px;
    background: transparent;
    color: #6c757d;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

.password-toggle-btn:hover,
.password-toggle-btn:focus {
    color: #2155ff;
    background: #eef2ff;
    outline: none;
}

.password-toggle-icon {
    width: 22px;
    height: 22px;
    display: block;
}

.btn {
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    min-height: 48px;
    width: 100%;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary-action {
    background: #2155ff;
    color: #fff;
}

.btn-success-action {
    background: #198754;
    color: #fff;
}

.mode-select-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 18px;
    text-align: center;
}

.mode-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.mode-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    width: 100%;
    padding: 20px 18px;
    border: 1px solid #d7deea;
    border-radius: 14px;
    background: #fff;
    text-align: left;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(33, 85, 255, 0.06);
}

.mode-card:active {
    transform: scale(0.99);
}

.mode-card-live {
    border-left: 5px solid #2155ff;
}

.mode-card-wfh {
    border-left: 5px solid #198754;
}

.mode-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
}

.mode-card-hint {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.35;
}

.mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    min-height: 58px;
    padding: 8px 12px 8px 14px;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 58%, #f3f7ff 100%);
    border-bottom: 1px solid #e3e8f2;
    box-shadow: 0 3px 14px rgba(17, 24, 39, 0.08);
    position: sticky;
    top: 0;
    z-index: 10;
}

.mobile-header.with-back {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.header-right {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-toolbar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.header-actions {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px;
    border-radius: 14px;
    border: 1px solid #dfe6f4;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 1px 3px rgba(17, 24, 39, 0.06);
}

.header-actions-single {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-icon-btn {
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #dbe3f3;
    border-radius: 10px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    color: #2155ff;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.header-icon-btn:hover {
    background: #eaf0ff;
    border-color: #b8c7f0;
    box-shadow: 0 1px 4px rgba(33, 85, 255, 0.2);
}

.header-icon-btn:active:not(:disabled) {
    transform: scale(0.97);
}

.header-icon-btn:disabled {
    opacity: 0.55;
    cursor: wait;
}

.header-icon-svg {
    width: 20px;
    height: 20px;
    display: block;
}

.header-sep {
    width: 1px;
    height: 18px;
    background: #d8dee8;
    flex-shrink: 0;
}

.mobile-title {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.back-link,
.header-nav-btn {
    background: none;
    border: none;
    color: #2155ff;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 2px;
    line-height: 1.2;
    white-space: nowrap;
}

.header-nav-btn:hover,
.back-link:hover {
    color: #163fbf;
}

.header-action-btn {
    appearance: none;
    border: 1px solid #dbe3f3;
    background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
    color: #2155ff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    padding: 9px 12px;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.header-action-btn:hover {
    background: #eaf0ff;
    border-color: #b8c7f0;
    box-shadow: 0 1px 4px rgba(33, 85, 255, 0.18);
}

.totp-qr-wrap {
    display: flex;
    justify-content: center;
    margin: 12px 0 16px;
}

.totp-qr-img {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid #e8ecf2;
}

.totp-hint {
    text-align: left;
    line-height: 1.45;
    margin-bottom: 18px;
}

.totp-field-label {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 10px;
    letter-spacing: 0.01em;
}

.totp-form-stack .totp-field-label {
    margin-top: 8px;
}

.totp-secret {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 13px;
    letter-spacing: 0.04em;
    word-break: break-all;
    text-align: center;
    margin: 0 0 8px;
    color: #1f2937;
    background: #f5f7fc;
    border: 1px solid #e4e8ef;
    border-radius: 10px;
    padding: 10px 12px;
}

.totp-secret-btn {
    display: block;
    width: 100%;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.totp-secret-btn:active {
    background: #ebf0ff;
    border-color: #b8c7f0;
}

.totp-copy-status {
    color: #198754;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    margin: 0 0 16px;
}

.totp-code-input {
    letter-spacing: 0.35em;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
}

.install-link {
    display: block;
    margin-top: 16px;
    text-align: center;
    width: 100%;
}

.caption-text {
    font-size: 14px;
    color: #6c757d;
    margin: 0 0 4px;
}

.hero-text {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 12px;
}

.subhero-text {
    font-size: 18px;
    margin: 0 0 16px;
}

.section-title {
    font-size: 14px;
    font-weight: 700;
    color: #343a40;
    margin: 6px 0 10px;
}

.event-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-content: stretch;
}

.event-tile {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid transparent;
    padding: 12px 10px;
    text-align: center;
    cursor: pointer;
    appearance: none;
    font-family: inherit;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    transition: transform 0.16s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.event-tile::after {
    content: '';
    position: absolute;
    top: 7px;
    right: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    opacity: 0.85;
    transition: transform 0.2s ease;
}

.event-tile-start {
    background: linear-gradient(160deg, #edf7f1 0%, #d1e7dd 100%);
    border-color: rgba(25, 135, 84, 0.22);
    color: #155724;
}

.event-tile-start::after {
    background: #198754;
    box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.15);
}

.event-tile-end {
    background: linear-gradient(160deg, #fff1f3 0%, #f8d7da 100%);
    border-color: rgba(220, 53, 69, 0.22);
    color: #842029;
}

.event-tile-end::after {
    background: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.14);
}

.event-tile:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.1);
}

.event-tile:active {
    transform: scale(0.98);
}

.event-tile.selected {
    transform: translateY(-1px);
    border-color: #2155ff;
    box-shadow: 0 4px 14px rgba(33, 85, 255, 0.32), 0 0 0 1px rgba(33, 85, 255, 0.12);
}

.event-tile.selected::after {
    transform: scale(1.15);
}

.event-tile.selected.event-tile-start {
    background: linear-gradient(160deg, #e3f8ea 0%, #c8f5d4 100%);
}

.event-tile.selected.event-tile-end {
    background: linear-gradient(160deg, #ffe8ec 0%, #ffd0d8 100%);
}

.event-name {
    font-size: 12px;
    line-height: 1.3;
    align-self: center;
    word-break: break-word;
    hyphens: auto;
    transition: font-weight 0.15s ease;
}

.event-name-selected {
    font-weight: 700;
}

.location-warning,
.location-banner {
    width: 94%;
    margin: 10px auto 0;
    padding: 14px;
    border-radius: 12px;
    background: #fff8e6;
    border: 1px solid #ffe8a3;
    box-sizing: border-box;
}

.scan-location-footer {
    flex-shrink: 0;
    width: 94%;
    margin: 12px auto 0;
    padding-bottom: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.scan-location-footer .location-alert-card {
    margin: 0;
    width: 100%;
}

.scan-location-footer .home-location-btn {
    width: 100%;
}

.register-btn {
    flex-shrink: 0;
    width: 94%;
    margin: 10px auto 0;
    box-sizing: border-box;
}

.warning-text {
    color: #856404;
    font-size: 13px;
    margin: 0 0 6px;
}

.muted-text {
    color: #6c757d;
    font-size: 12px;
    margin: 0;
}

.center-text {
    text-align: center;
}

.error-text {
    color: #d62828;
    text-align: center;
    margin: 0;
}

.status-banner {
    margin: 0;
    padding: 12px 16px;
    background: #e7f5f8;
    color: #0b7285;
    font-size: 14px;
}

.status-info {
    color: #0b7285;
    font-size: 14px;
}

.scan-page {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.qr-reader {
    flex: 1;
    min-height: 320px;
    background: #000;
}

.qr-card {
    display: flex;
    justify-content: center;
    padding: 16px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    margin: 16px 0;
}

.qr-image {
    width: 260px;
    height: 260px;
}

.qr-refresh-countdown {
    margin-top: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #0d6efd;
}

.qr-refresh-card {
    min-height: 292px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qr-refresh-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    width: 100%;
    min-height: 260px;
    padding: 8px 16px;
}

.qr-refresh-text {
    margin: 0;
    font-size: 0.95rem;
    font-weight: 600;
    color: #495057;
}

.qr-refresh-progress {
    width: 100%;
    max-width: 220px;
    height: 8px;
    background: #e9ecef;
    border-radius: 999px;
    overflow: hidden;
}

.qr-refresh-progress-bar {
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, #2155ff, #5b8cff);
    border-radius: 999px;
    animation: qr-refresh-progress 1.1s ease-in-out infinite;
}

@keyframes qr-refresh-progress {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(350%);
    }
}

.loading-panel, .spinner-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px;
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(33, 85, 255, 0.2);
    border-top-color: #2155ff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.spinner-green {
    border-color: rgba(25, 135, 84, 0.2);
    border-top-color: #198754;
    margin: 8px auto 0;
}

.spinner-lg {
    width: 56px;
    height: 56px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.result-page {
    display: flex;
    flex-direction: column;
    padding: 20px 24px;
    background: #fff;
    overflow: hidden;
}

.result-body {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
}

.result-icon {
    font-size: 88px;
    margin: 0;
    line-height: 1;
}

.success-icon, .success-text {
    color: #198754;
}

.failure-icon, .failure-text {
    color: #dc3545;
}

.result-headline {
    font-size: 28px;
    font-weight: 700;
    margin: 16px 0 8px;
}

.result-detail {
    font-size: 16px;
    color: #495057;
    margin: 0;
}

h1:focus {
    outline: none;
}

#blazor-error-ui {
    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 {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred."
}
