/* ============================================================
   Tertios Mobile — Brand CSS
   ============================================================ */

:root {
    --color-primary:      #154A66;
    --color-primary-dark: #0D4270;
    --color-accent:       #F37B20;
    --color-white:        #ffffff;
    --color-bg:           #f4f6f9;
    --color-bg-2:         #bdcbd6;
    --color-surface:      #ffffff;
    --color-border:       #e0e4ea;
    --color-text:         #1a1a2e;
    --color-text-muted:   #6b7280;

    --status-pending:     #F37B20;
    --status-approved:    #22c55e;
    --status-rejected:    #ef4444;
    --status-processing:  #3b82f6;

    --font-family:        'Inter', system-ui, -apple-system, sans-serif;
    --radius-sm:          6px;
    --radius-md:          10px;
    --radius-lg:          16px;

    --header-height:      56px;
    --tab-height:         60px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-family);
    font-size: 15px;
    color: var(--color-text);
    background: var(--color-bg);
    overscroll-behavior: none;
    -webkit-tap-highlight-color: transparent;
}

/* ── Shell ── */
.app-shell {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
}

/* ── Header ── */
.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    padding: 0 8px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
}

.app-header-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: var(--radius-sm);
}

.app-header-btn:active { background: rgba(255,255,255,.15); }

.app-header-title {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: .3px;
}

/* ── Main content ── */
.app-main {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 16px;
}

/* ── Impersonation banner ── */
.impersonation-banner {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    background: var(--status-pending);
    color: var(--color-white);
    font-size: 0.9rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.impersonation-text {
    flex: 1;
    line-height: 1.3;
}

.impersonation-stop-btn {
    white-space: nowrap;
    font-weight: 600;
}

/* ── Drawer overlay ── */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    z-index: 1000;
    animation: fadeIn .2s ease;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── Drawer ── */
.drawer {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 280px;
    background: var(--color-bg);
    color: var(--color-primary-dark);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    box-shadow: 4px 0 20px rgba(0,0,0,.3);
    animation: slideIn .25s ease;
}

@keyframes slideIn { from { transform: translateX(-100%); } to { transform: translateX(0); } }

.drawer-header {
    padding: 32px 12px 18px 20px;
    background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255,255,255,.1);
    display: flex;
    flex-direction: row;
}

.drawer-header-icon {    
}

.drawer-header-text {
    display: flex;
    flex-direction: column;
}

.drawer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 14px;
    margin-right: 14px;
    object-fit: contain;
}

.drawer-user-name {
    font-size: .95rem;
    font-weight: 600;
}

.drawer-user-email {
    font-size: .8rem;
    opacity: .7;
    margin-top: 2px;
}

.drawer-nav {
    flex: 1;
    overflow-y: auto;
    padding: 8px 0;
}

.drawer-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 20px;
    color: var(--color-primary-dark);
    text-decoration: none;
    font-size: .95rem;
    transition: background .15s;
    cursor: pointer;
}

.drawer-item:hover,
.drawer-item:active { background: rgba(0,0,0,.1); color: var(--color-primary-dark); }

.drawer-item.active {
    font-weight: 600;
    border-left: 3px solid var(--color-accent);
}

.drawer-icon { width: 20px; text-align: center; font-size: 1rem; }

.app-boot-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg, #f4f6f9);
    z-index: 10000;
}

.profiel-foto {
    width: 7.5rem;        /* 3:4 ratio met height 10rem */
    height: 10rem;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .12);
}

.drawer-item-label { flex: 1; }

.drawer-notification-count {
    min-width: 22px;
    height: 22px;
    padding: 0 7px;
    border-radius: 11px;
    background: var(--color-danger, #dc3545);
    color: #fff;
    font-size: .75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.app-header-btn { position: relative; }

.app-header-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 8px;
    background: var(--color-danger, #dc3545);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.drawer-footer {
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,.1);
}

/* ── Bottom / page tabs ── */
.bottom-tabs {
    display: flex;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    margin: -16px -16px 16px;
}

.bottom-tab {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 10px 4px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--color-text-muted);
    font-size: .75rem;
    font-weight: 500;
    font-family: var(--font-family);
    cursor: pointer;
    transition: color .15s;
}

.bottom-tab i { font-size: 1.1rem; }

.bottom-tab.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    font-weight: 600;
}

/* ── Page tabs ── */
.page-tabs {
    display: flex;
    border-bottom: 2px solid var(--color-border);
    background: var(--color-surface);
    margin: -16px -16px 16px;
    padding: 0 16px;
}

.page-tab {
    padding: 12px 16px;
    font-size: .9rem;
    font-weight: 500;
    color: var(--color-text-muted);
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color .15s;
}

.page-tab.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
    font-weight: 600;
}

/* ── View toggle (week/maand/agenda) ── */
.view-toggle {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.view-toggle-btn {
    padding: 7px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text-muted);
    font-size: .875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .15s;
}

.view-toggle-btn.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
}

/* ── Cards ── */
.card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 14px 16px;
    margin-bottom: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,.04);
}

.card-title {
    font-weight: 600;
    font-size: .95rem;
    margin-bottom: 4px;
}

.card-meta {
    font-size: .8rem;
    color: var(--color-text-muted);
}

/* ── List items ── */
.list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    padding: 12px 14px;
    margin-bottom: 8px;
    text-decoration: none;
    color: inherit;
}

.list-item-icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(21, 74, 102, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1rem;
    flex-shrink: 0;
}

.list-item-body { flex: 1; min-width: 0; }
.list-item-title { font-weight: 500; font-size: .9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.list-item-sub   { font-size: .8rem; color: var(--color-text-muted); margin-top: 2px; }

/* ── Status badges ── */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 20px;
    font-size: .75rem;
    font-weight: 600;
}

.badge-pending    { background: rgba(243,123,32,.12);  color: var(--status-pending); }
.badge-approved   { background: rgba(34,197,94,.12);   color: var(--status-approved); }
.badge-rejected   { background: rgba(239,68,68,.12);   color: var(--status-rejected); }
.badge-processing { background: rgba(59,130,246,.12);  color: var(--status-processing); }

/* ── Rooster dag-header ── */
.rooster-dag-header {
    font-size: .8rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 8px 2px 4px;
    margin-top: 4px;
}

/* ── FAB ── */
.fab {
    position: fixed;
    bottom: 24px;
    right: 20px;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(243,123,32,.45);
    cursor: pointer;
    transition: transform .15s, box-shadow .15s;
    z-index: 100;
}

.fab:active { transform: scale(.93); box-shadow: 0 2px 8px rgba(243,123,32,.35); }

/* ── Saldi table ── */
.saldi-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .875rem;
}

.saldi-table th {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 10px 12px;
    text-align: left;
    font-weight: 500;
}

.saldi-table td {
    padding: 10px 12px;
    border-bottom: 1px solid var(--color-border);
}

.saldi-table tr:last-child td { border-bottom: none; }
.saldi-table tr:nth-child(even) td { background: rgba(0,0,0,.02); }

.saldi-row { cursor: pointer; }
.saldi-row:active td { background: rgba(21, 74, 102, .08); }

/* ── Loading spinner ── */
.app-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: var(--color-primary-dark);
}

.app-loading-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(255,255,255,.2);
    border-top-color: var(--color-white);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ── Inline spinner ── */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(21,74,102,.2);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

/* ── Geen verbinding ── */
.no-connection {
    text-align: center;
    padding: 40px 20px;
    color: var(--color-text-muted);
}

.no-connection i { font-size: 2.5rem; margin-bottom: 12px; color: var(--color-border); }
.no-connection p { margin: 0; font-size: .9rem; }

/* ── Login screen ── */
.login-screen {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /*background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);*/
    background: linear-gradient(160deg, var(--color-bg) 0%, var(--color-bg-2) 100%);
    padding: 32px 24px;
}

.logo {
    text-align: center;
}

.login-logo {
    height: 140px;
    width: auto;
    margin-bottom: 16px;
    object-fit: contain;
}

.login-slogan {
    color: var(--color-accent);
    text-align: center;
    margin-bottom: 16px;
}

.login-card {
    width: 100%;
    max-width: 360px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,.25);
}

.login-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 20px;
    text-align: center;
}

.form-label { font-size: .85rem; font-weight: 500; color: var(--color-text-muted); margin-bottom: 4px; display: block; }

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: .95rem;
    font-family: var(--font-family);
    outline: none;
    transition: border-color .15s;
}

.form-control:focus { border-color: var(--color-primary); }

.btn-primary {
    width: 100%;
    padding: 12px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
    font-family: var(--font-family);
}

.btn-primary:active { background: var(--color-primary-dark); }

.btn-secondary {
    width: 100%;
    padding: 11px;
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    border-radius: var(--radius-sm);
    font-size: .95rem;
    font-weight: 500;
    cursor: pointer;
    font-family: var(--font-family);
}

.login-divider {
    text-align: center;
    color: var(--color-text-muted);
    font-size: .8rem;
    margin: 12px 0;
}

.login-error {
    background: rgba(239,68,68,.08);
    color: #b91c1c;
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    font-size: .85rem;
    margin-bottom: 12px;
}

/* ── Week calendar view ── */
.week-view {
    margin: 0 -16px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.week-header {
    display: grid;
    grid-template-columns: 44px repeat(7, 1fr);
    background: var(--color-surface);
    border-bottom: 2px solid var(--color-border);
    flex-shrink: 0;
    position: sticky;
    top: 0;
    z-index: 10;
}

.week-gutter {
    background: var(--color-bg);
    border-right: 1px solid var(--color-border);
    position: relative;
}

.week-col-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 6px 2px;
    gap: 2px;
}

.week-dayname {
    font-size: .6rem;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: .3px;
}

.week-daynum {
    font-size: .85rem;
    font-weight: 500;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--color-text);
}

.week-col-today .week-dayname { color: var(--color-primary); font-weight: 700; }

.week-today-num {
    background: var(--color-primary);
    color: var(--color-white) !important;
    font-weight: 700;
}

.week-allday-strip {
    display: grid;
    grid-template-columns: 44px repeat(7, 1fr);
    border-bottom: 2px solid var(--color-border);
    background: var(--color-surface);
    flex-shrink: 0;
}

.week-allday-gutter {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 4px 5px 4px 0;
}

.week-allday-label {
    font-size: .55rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: .3px;
    margin-top: 3px;
}

.week-allday-col {
    border-left: 1px solid var(--color-border);
    padding: 3px 2px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-height: 26px;
    min-width: 0; /* prevent grid column from expanding beyond 1fr */
}

.week-allday-event {
    border-left: 3px solid;
    border-radius: 3px;
    padding: 2px 3px;
    font-size: .58rem;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    line-height: 1.4;
}

.week-body {
    overflow-y: auto;
    height: calc(100dvh - 260px);
    -webkit-overflow-scrolling: touch;
}

.week-grid {
    display: grid;
    grid-template-columns: 44px repeat(7, 1fr);
    position: relative;
}

.week-time-label {
    position: absolute;
    right: 5px;
    font-size: .58rem;
    color: var(--color-text-muted);
    transform: translateY(-50%);
    white-space: nowrap;
    line-height: 1;
    user-select: none;
}

.week-day-col {
    position: relative;
    border-left: 1px solid var(--color-border);
}

.week-day-today { background: rgba(21, 74, 102, .03); }

.week-hour-line {
    position: absolute;
    left: 0;
    right: 0;
    border-top: 1px solid var(--color-border);
    pointer-events: none;
}

.week-now-indicator {
    position: absolute;
    left: -1px;
    right: 0;
    height: 2px;
    background: var(--color-accent);
    z-index: 5;
    pointer-events: none;
}

.week-now-indicator::before {
    content: '';
    position: absolute;
    left: -3px;
    top: -3px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-accent);
}

.week-event {
    position: absolute;
    border-left: 3px solid;
    border-radius: 3px;
    padding: 2px 3px;
    overflow: hidden;
    z-index: 2;
    min-height: 18px;
    box-sizing: border-box;
}

.week-event-header {
    font-size: .6rem;
    font-weight: 700;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    line-height: 1.3;
}

.week-event-label {
    font-size: .58rem;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    opacity: .9;
    line-height: 1.2;
}

/* ── Month calendar view ── */
.maand-view {
    margin: 0 -16px;
    display: flex;
    flex-direction: column;
    height: calc(100dvh - 200px);
}

.maand-header {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background: var(--color-surface);
    border-bottom: 2px solid var(--color-border);
    flex-shrink: 0;
}

.maand-col-header {
    text-align: center;
    padding: 6px 2px;
    font-size: .65rem;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: .3px;
}

.maand-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    flex: 1;
    overflow: hidden;
}

.maand-cel {
    border-right: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 3px 2px 2px;
    display: flex;
    flex-direction: column;
    gap: 1px;
    overflow: hidden;
    min-width: 0;
}

.maand-cel:nth-child(7n) { border-right: none; }

.maand-cel-buiten { background: rgba(0, 0, 0, .02); }
.maand-cel-buiten .maand-dag-num { opacity: .35; }

.maand-cel-vandaag { background: rgba(21, 74, 102, .04); }

.maand-dag-num {
    font-size: .75rem;
    font-weight: 500;
    color: var(--color-text);
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    align-self: center;
    flex-shrink: 0;
    line-height: 1;
}

.maand-today-num {
    background: var(--color-primary);
    color: var(--color-white) !important;
    font-weight: 700;
}

.maand-event {
    border-left: 3px solid;
    border-radius: 3px;
    padding: 1px 3px;
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
    min-width: 0;
}

.maand-event-allday {
    display: flex;
    align-items: center;
}

.maand-event-timed {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.maand-event-time {
    font-size: .55rem;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.maand-event-label {
    font-size: .55rem;
    font-weight: 500;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
}

.maand-meer {
    font-size: .55rem;
    color: var(--color-text-muted);
    padding-left: 3px;
    font-weight: 500;
}

/* ── Event detail popup ── */
.detail-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn .2s ease;
}

.detail-popup {
    width: 90%;
    height: 80%;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .35);
    animation: slideUp .22s ease;
}

@keyframes slideUp {
    from { transform: translateY(24px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 16px 16px 20px;
    color: #fff;
    flex-shrink: 0;
    border-bottom: 2px solid var(--color-primary);
}

.detail-header-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.detail-header-icon { font-size: 1.2rem; flex-shrink: 0; }

.detail-header-title {
    font-size: 1rem;
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.detail-close-btn {
    background: rgba(255, 255, 255, .2);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    cursor: pointer;
    flex-shrink: 0;
    margin-left: 8px;
}

.detail-close-btn:active { background: rgba(255, 255, 255, .35); }

.detail-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.detail-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 13px 20px;
    /*border-bottom: 1px solid var(--color-border);*/
    border-bottom: 1px solid var(--color-border);
}

.detail-row:last-child { border-bottom: none; }

.detail-row-icon {
    width: 16px;
    text-align: center;
    color: var(--color-text-muted);
    margin-top: 3px;
    flex-shrink: 0;
    font-size: .9rem;
}

.detail-row-main {
    font-size: .9rem;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.4;
}

.detail-row-sub {
    font-size: .72rem;
    color: var(--color-text-muted);
    margin-bottom: 2px;
}

/* ── iOS safe area ── */
.status-bar-safe-area {
    height: env(safe-area-inset-top, 0px);
    background: var(--color-primary-dark);
}

/* ── Blazor error UI ──
   Standaard verborgen. Blazor zet zelf style="display: block" wanneer er een echte
   onhandled exception is. Zonder deze regels is het element altijd zichtbaar onderaan. */
#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;
}
