html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Login page styles */
.login-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem 1.5rem 2rem;
    isolation: isolate;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    /* background image - put your image in wwwroot/images/Untitled.png (or change path) */
    background-image:
        linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.14) 100%),
        url('/images/Untitled.png');
}

/* also apply to pages wrapped with .page.background-img (MainLayout) */
.page {
    min-height: 100vh;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #A4F370;
    color: hotpink;
}

/* Keep the background responsive on wide screens */
@media (min-width: 1200px) {
    .login-page,
    .page.background-img {
        background-size: cover;
        background-position: center center;
    }
}

/* On very wide screens show the full image without cropping */
@media (min-aspect-ratio: 16/10) {
    .login-page,
    .page.background-img {
        background-size: contain;
        background-position: center center;
    }
}

.login-header {
    position: absolute;
    top: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: clamp(3rem, 3.8vw + 1rem, 4.6rem);
    font-weight: 700;
    color: #ff6faf; /* refined pink */
    text-shadow:
        0 0 10px rgba(255,140,200,0.7),
        0 0 22px rgba(255,110,180,0.55),
        0 8px 28px rgba(0,0,0,0.16);
    animation: glow 2.4s ease-in-out infinite alternate;
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 1rem;
    margin-top: 1.5rem;
}

.login-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(244,255,244,0.93) 100%);
    padding: 2.1rem;
    border-radius: 18px;
    border: 1px solid #d7f3d9;
    box-shadow:
        0 16px 34px rgba(0,0,0,0.12),
        0 1px 0 rgba(255,255,255,0.65) inset;
    color: #ff70b5; /* softer pink for text */
    backdrop-filter: blur(4px);
}

.login-label {
    color: #ff7fc1; /* softer pink */
    font-weight: 600;
}

.login-input {
    background: #fcfff8; /* very light */
    border: 1px solid #75D933;
    color: #ff69b4; /* input text pink */
}

.login-input::placeholder {
    color: #ff91c9;
    opacity: 0.7;
}

.login-input:focus {
    border-color: #66c335;
    box-shadow: 0 0 0 0.2rem rgba(117, 217, 51, 0.25);
}

.link-row a {
    color: #ff6faf;
}

a:hover,
.link-row a:hover {
    color: #ff87c6;
}

h1:focus {
    outline: none;
}

a, .btn-link {
    color: #ff6faf;
}

/* Primary buttons on login page: green background, pink text */
.btn-primary {
    color: #ff6faf;
    background: linear-gradient(180deg,#b6f79f,#75d933);
    border-color: #63c12b;
    box-shadow:
        0 10px 22px rgba(107, 199, 79, 0.26),
        0 1px 0 rgba(255,255,255,0.6) inset;
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    animation: button-breathe 2.8s ease-in-out infinite;
}

.btn-primary:hover {
    background: linear-gradient(180deg,#a4f370,#68c42f);
    transform: translateY(-1px);
    filter: brightness(1.02);
}

.btn-primary:active,
.btn-primary:focus {
    background: linear-gradient(180deg,#93e463,#5baa29);
    border-color: #4c9a21;
    box-shadow: 0 0 0 0.2rem rgba(117, 217, 51, 0.28);
    transform: translateY(0);
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: red;
}

@keyframes button-breathe {
    0% { transform: translateY(0); box-shadow: 0 8px 18px rgba(95, 207, 95, 0.35); }
    50% { transform: translateY(-2px); box-shadow: 0 12px 20px rgba(95, 207, 95, 0.4); }
    100% { transform: translateY(0); box-shadow: 0 8px 18px rgba(95, 207, 95, 0.35); }
}

@media (max-width: 640px) {
    .login-page {
        padding: 4.25rem 1.25rem 1.5rem;
    }

    .login-header {
        font-size: clamp(2.6rem, 5vw + 1rem, 3.6rem);
        top: 1rem;
        left: 50%;
        transform: translateX(-50%);
    }
}

/* Quote page */
.quote-page {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem 3rem;
    padding-top: 5rem;
    background: #A4F370;
}

.quote-header {
    position: absolute;
    top: 5rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-size: clamp(3rem, 3.8vw + 1rem, 4.6rem);
    font-weight: 700;
    color: #ff6faf;
    text-shadow:
        0 0 10px rgba(255,140,200,0.7),
        0 0 22px rgba(255,110,180,0.55),
        0 8px 28px rgba(0,0,0,0.16);
}

.quote-card {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(175deg, rgba(255,255,255,0.96) 0%, rgba(244,255,244,0.93) 100%);
    border-radius: 18px;
    padding: 2rem;
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.55) inset;
    border: 1px solid #d7f3d9;
    color: #ff6faf;
    box-sizing: border-box; /* Include padding in width calculation */
    overflow-x: hidden; /* Prevent horizontal overflow */
}

/* Ensure form and all containers respect card width */
.quote-card form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.quote-card .mb-3 {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.quote-title {
    margin-bottom: 0.25rem;
    font-weight: 700;
    font-size: 1.6rem;
    color: #ff6faf;
}

.quote-subtitle {
    margin-bottom: 1.5rem;
    color: #ff8cc8;
}

.quote-label {
    font-weight: 600;
    color: #ff7fc1;
}

.quote-input {
    background: #f8fff3;
    border: 1px solid #75D933;
    color: #ff6faf;
    border-radius: 10px;
    padding: 0.65rem 0.85rem;
    box-shadow: 0 8px 16px rgba(0,0,0,0.05) inset;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.quote-input:focus {
    border-color: #5fb93b;
    box-shadow: 0 0 0 0.18rem rgba(109, 209, 88, 0.3);
}

/* Mobile-friendly dropdowns */
.form-select.quote-input {
    font-size: 16px; /* Prevents zoom on iOS */
    padding: 0.75rem 2.5rem 0.75rem 0.85rem; /* Extra padding for arrow */
    min-height: 44px; /* Minimum touch target size */
    width: 100% !important; /* Full width on all screens - override any Bootstrap defaults */
    max-width: 100% !important; /* Ensure it doesn't exceed container */
    min-width: 0 !important; /* Allow shrinking below default min-width */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ff6faf' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    box-sizing: border-box !important; /* Include padding in width calculation */
    overflow: hidden; /* Prevent content from overflowing */
    text-overflow: ellipsis; /* Show ellipsis if text is too long */
    white-space: nowrap; /* Prevent text wrapping */
}

/* Force select to use container width, not content width */
.quote-card select,
.quote-card .form-select {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
}


.form-select.quote-input:focus {
    border-color: #5fb93b;
    box-shadow: 0 0 0 0.18rem rgba(109, 209, 88, 0.3);
    outline: none; /* Remove default outline */
}

@media (max-width: 640px) {
    /* Ensure quote-page doesn't overflow */
    .quote-page {
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    /* Ensure quote-card fits within viewport */
    .quote-card {
        width: calc(100% - 2rem);
        max-width: calc(100vw - 2rem);
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    /* Ensure form and containers fit */
    .quote-card form,
    .quote-card .mb-3 {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .form-select.quote-input {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.9rem 3rem 0.9rem 1rem; /* Larger padding for better touch */
        min-height: 48px; /* Larger touch target on mobile */
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure all form inputs are full width on mobile */
    .quote-input {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Force select elements to respect container width on mobile */
    .quote-card select {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

.topbar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #A4F370 0%, #75D933 50%, #8ee05a 100%);
    border-bottom: 1px solid rgba(117, 217, 51, 0.3);
    box-shadow: 0 4px 16px rgba(117, 217, 51, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}

.topbar-brand {
    font-size: clamp(1.8rem, 2.5vw + 0.5rem, 2.4rem);
    font-weight: 700;
    color: #ff6faf;
    text-shadow:
        0 0 8px rgba(255,140,200,0.6),
        0 0 16px rgba(255,110,180,0.4),
        0 4px 12px rgba(0,0,0,0.12);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-left {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ff6faf;
}

.account-icon {
    font-size: 1.3rem;
}

.account-name {
    font-weight: 600;
    color: #ff6faf;
}

.logout {
    color: #ff6faf;
}

.language-selector {
    display: flex;
    align-items: center;
}

.language-select {
    background-color: #75D933;
    border: 2px solid #ff6faf;
    border-radius: 6px;
    padding: 0.4rem 0.6rem;
    font-size: 0.9rem;
    color: #ff6faf;
    font-weight: 600;
    min-width: 140px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(255, 111, 175, 0.4), 0 0 0 1px rgba(117, 217, 51, 0.3);
}

.language-select:hover {
    background-color: #8ee05a;
    border-color: #ff6faf;
    color: #ff6faf;
    box-shadow: 0 4px 12px rgba(255, 111, 175, 0.5), 0 0 0 1px rgba(117, 217, 51, 0.4);
}

.language-select:focus {
    outline: none;
    border-color: #ff6faf;
    box-shadow: 0 4px 12px rgba(255, 111, 175, 0.6), 0 0 0 2px rgba(255, 111, 175, 0.3);
    color: #ff6faf;
}

.language-select option {
    background-color: #75D933;
    color: #ff6faf;
}

/* Responsive Design - Mobile First */

/* Mobile devices (up to 640px) */
@media (max-width: 640px) {
    .topbar {
        padding: 0.6rem 1rem;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .topbar-brand {
        font-size: clamp(1.4rem, 4vw + 0.5rem, 1.8rem);
    }

    .topbar-right {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .account-name {
        font-size: 0.9rem;
    }

    .account-icon {
        font-size: 1.1rem;
    }

    .logout {
        font-size: 0.9rem;
        padding: 0.25rem 0.5rem;
    }

    .language-select {
        font-size: 0.85rem;
        padding: 0.3rem 0.5rem;
        min-width: 120px;
    }

    .login-container {
        max-width: 100%;
        padding: 0.5rem;
    }

    .login-card {
        padding: 1.5rem;
        border-radius: 14px;
    }

    .quote-page,
    .routes-page,
    .payment-page {
        padding: 3.5rem 1rem 2rem;
        padding-top: 4.5rem;
    }

    .quote-card,
    .routes-card,
    .payment-card {
        padding: 1.5rem;
        border-radius: 14px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Ensure form and inputs fit within card on mobile */
    .quote-card form,
    .quote-card .mb-3 {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .quote-title {
        font-size: 1.4rem;
    }

    .quote-subtitle {
        font-size: 0.9rem;
    }

    .routes-columns {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .route-item {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
        gap: 0.5rem;
        padding: 0.6rem 0.8rem;
    }

    .route-rank {
        grid-row: 1 / 3;
        font-size: 1.2rem;
    }

    .route-price {
        font-size: 0.95rem;
    }

    .route-time {
        text-align: left;
        font-size: 0.9rem;
        grid-column: 2;
    }

    .payment-row {
        flex-direction: column;
        gap: 0.3rem;
        padding: 0.5rem 0.7rem;
    }

    .payment-row .label,
    .payment-row .value {
        font-size: 0.9rem;
    }

    .payment-actions {
        flex-direction: column;
        gap: 0.5rem;
    }

    .payment-actions .btn {
        width: 100%;
    }
}

/* Tablet devices (641px to 1024px) */
@media (min-width: 641px) and (max-width: 1024px) {
    .topbar {
        padding: 0.7rem 1.25rem;
    }

    .topbar-brand {
        font-size: clamp(1.6rem, 2vw + 0.5rem, 2rem);
    }

    .quote-page,
    .routes-page,
    .payment-page {
        padding: 3.5rem 1.25rem 2.5rem;
        padding-top: 4.5rem;
    }

    .quote-card,
    .routes-card,
    .payment-card {
        max-width: 600px;
        padding: 1.75rem;
    }

    .routes-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .route-item {
        grid-template-columns: 44px 1fr 1fr;
        padding: 0.7rem 0.9rem;
    }

    .payment-row {
        padding: 0.6rem 0.8rem;
    }
}

/* Desktop and larger (1025px+) */
@media (min-width: 1025px) {
    .quote-card,
    .routes-card,
    .payment-card {
        max-width: 600px;
    }

    .routes-card {
        max-width: 960px;
    }

    .routes-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .route-item {
        padding: 0.85rem 1.1rem;
    }
}

.logout:hover {
    color: #ff8cc8;
    text-decoration: underline;
}

.quote-submit {
    background: linear-gradient(180deg,#b4f1c2,#88e3a8);
    border-color: #63c12b;
    color: #ff6faf;
    font-weight: 700;
    border-radius: 12px;
    box-shadow:
        0 12px 24px rgba(85, 201, 122, 0.28),
        0 1px 0 rgba(255,255,255,0.45) inset;
}

.quote-submit:hover {
    background: linear-gradient(180deg,#a3ecb7,#75d592);
    transform: translateY(-1px);
}

.quote-submit:active,
.quote-submit:focus {
    background: linear-gradient(180deg,#92e4ab,#63c57f);
    border-color: #4c9a21;
    box-shadow: 0 0 0 0.2rem rgba(110, 210, 140, 0.32);
    transform: translateY(0);
}

.quote-checkbox {
    width: 1.2rem;
    height: 1.2rem;
    accent-color: #75D933;
}

/* Routes page */
.routes-page {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem 3rem;
    padding-top: 5rem;
    background: #A4F370;
}


.routes-card {
    width: 100%;
    max-width: 960px;
    background: linear-gradient(175deg, rgba(255,255,255,0.96) 0%, rgba(244,255,244,0.93) 100%);
    border-radius: 18px;
    padding: 2rem;
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.55) inset;
    border: 1px solid #d7f3d9;
    color: #ff6faf;
}

.routes-card-head {
    margin-bottom: 1.5rem;
}

.routes-card-head h2 {
    margin: 0 0 0.2rem 0;
    font-weight: 700;
    color: #ff6faf;
}

.routes-back {
    padding: 0;
    margin-top: 0.25rem;
    color: #ff6faf;
    text-decoration: none;
}

.routes-back:hover {
    color: #ff8cc8;
    text-decoration: underline;
}

.routes-subtitle {
    margin: 0;
    color: #ff8cc8;
}

.routes-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.routes-column h3 {
    margin-bottom: 0.75rem;
    color: #ff7fc1;
}

.routes-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.route-item {
    display: grid;
    grid-template-columns: 48px 1fr 1fr;
    align-items: center;
    background: #fcfff8;
    border: 1px solid #d7f3d9;
    border-radius: 12px;
    padding: 0.75rem 1rem;
    box-shadow: 0 6px 14px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.route-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
}

.route-rank {
    font-weight: 700;
    color: #ff6faf;
}

.route-price {
    font-weight: 700;
    color: #ff6faf;
}

.route-time {
    text-align: right;
    color: #ff8cc8;
}


/* Payment page */
.payment-page {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem 3rem;
    padding-top: 5rem;
    background: #A4F370;
}

.payment-card {
    width: 100%;
    max-width: 520px;
    background: linear-gradient(175deg, rgba(255,255,255,0.96) 0%, rgba(244,255,244,0.93) 100%);
    border-radius: 18px;
    padding: 2rem;
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.12),
        0 1px 0 rgba(255, 255, 255, 0.55) inset;
    border: 1px solid #d7f3d9;
    color: #ff6faf;
}

.payment-subtitle {
    margin: 0 0 1.25rem 0;
    color: #ff8cc8;
}

.payment-summary {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.payment-row {
    display: flex;
    justify-content: space-between;
    background: #fcfff8;
    border: 1px solid #d7f3d9;
    border-radius: 12px;
    padding: 0.65rem 0.9rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.payment-row .label {
    font-weight: 600;
    color: #ff7fc1;
}

.payment-row .value {
    font-weight: 700;
    color: #ff6faf;
}

.payment-actions {
    margin-top: 0.5rem;
}

.payment-page .btn-primary {
    color: #ff6faf;
}

#blazor-error-ui {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    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."
    }
