/* /Components/CookieConsent.razor.rz.scp.css */
.cookie-backdrop[b-pkh0mom1zw] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 16px;
    animation: cookie-fade-in-b-pkh0mom1zw 0.3s ease;
}

@keyframes cookie-fade-in-b-pkh0mom1zw {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes cookie-slide-up-b-pkh0mom1zw {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.cookie-banner[b-pkh0mom1zw] {
    background: #1a1a2e;
    color: #e0e0e8;
    border-radius: 16px;
    padding: 24px 28px;
    max-width: 520px;
    width: 100%;
    box-shadow: 0 -4px 32px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: cookie-slide-up-b-pkh0mom1zw 0.35s ease;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, #0066B1, #4B2D8E, #E6332A) 1;
}

.cookie-icon[b-pkh0mom1zw] {
    font-size: 2rem;
    line-height: 1;
}

.cookie-content h3[b-pkh0mom1zw] {
    margin: 0 0 6px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

.cookie-content p[b-pkh0mom1zw] {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #aab;
}

.cookie-actions[b-pkh0mom1zw] {
    display: flex;
    gap: 10px;
}

.cookie-btn[b-pkh0mom1zw] {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s, transform 0.1s;
    font-family: inherit;
}

.cookie-btn:active[b-pkh0mom1zw] {
    transform: scale(0.97);
}

.cookie-btn-accept[b-pkh0mom1zw] {
    background: linear-gradient(135deg, #0066B1, #0080d4);
    color: #fff;
}

.cookie-btn-accept:hover[b-pkh0mom1zw] {
    background: linear-gradient(135deg, #0080d4, #00a3e0);
}

.cookie-btn-necessary[b-pkh0mom1zw] {
    background: rgba(255, 255, 255, 0.08);
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-btn-necessary:hover[b-pkh0mom1zw] {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

/* ── Mobile ── */
@media (max-width: 480px) {
    .cookie-backdrop[b-pkh0mom1zw] {
        padding: 0;
        align-items: flex-end;
    }

    .cookie-banner[b-pkh0mom1zw] {
        border-radius: 16px 16px 0 0;
        padding: 20px 20px 24px;
        max-width: 100%;
    }

    .cookie-actions[b-pkh0mom1zw] {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-btn[b-pkh0mom1zw] {
        padding: 14px 20px;
        font-size: 1rem;
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page-wrapper[b-7mhuvw4wjf] {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: #f8f9fb;
}

.top-nav[b-7mhuvw4wjf] {
    background: linear-gradient(135deg, #003d6b 0%, #0066B1 50%, #0080d4 100%);
    border-bottom: none;
    box-shadow: 0 2px 8px rgba(0,51,107,0.18);
    position: sticky;
    top: 0;
    z-index: 100;
}

.top-nav[b-7mhuvw4wjf]::after {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #00A3E0 0%, #0066B1 33%, #312783 66%, #E2001A 100%);
}

.nav-container[b-7mhuvw4wjf] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.brand[b-7mhuvw4wjf] {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-bolt[b-7mhuvw4wjf] {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 6px rgba(75, 45, 142, 0.5));
}

.nav-links[b-7mhuvw4wjf] {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link[b-7mhuvw4wjf] {
    position: relative;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.15s, color 0.15s;
    border: none;
    background: none;
    cursor: pointer;
}

.nav-link[b-7mhuvw4wjf]::after {
    content: '';
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 4px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-link:hover[b-7mhuvw4wjf] {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.nav-link:hover[b-7mhuvw4wjf]::after {
    transform: scaleX(1);
}

.login-btn[b-7mhuvw4wjf]::after,
.logout-btn[b-7mhuvw4wjf]::after {
    display: none;
}

.login-btn[b-7mhuvw4wjf] {
    background: rgba(255,255,255,0.2);
    color: #fff !important;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.3);
}

.login-btn:hover[b-7mhuvw4wjf] {
    background: rgba(255,255,255,0.3);
    color: #fff !important;
}

.logout-btn[b-7mhuvw4wjf] {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.lang-selector[b-7mhuvw4wjf] {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.lang-flag[b-7mhuvw4wjf] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity 0.15s, background 0.15s;
    text-decoration: none;
    overflow: hidden;
}

.lang-flag:hover[b-7mhuvw4wjf] {
    opacity: 0.85;
    background: rgba(255,255,255,0.1);
}

.lang-flag.active[b-7mhuvw4wjf] {
    opacity: 1;
    background: rgba(255,255,255,0.15);
    box-shadow: 0 0 0 2px rgba(255,255,255,0.5);
}

.lang-flag img[b-7mhuvw4wjf] {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: cover;
    border-radius: 50%;
}

.main-content[b-7mhuvw4wjf] {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 32px 24px;
}

.site-footer[b-7mhuvw4wjf] {
    position: relative;
    background: #1a1a2e;
    text-align: center;
    padding: 24px 24px 20px;
    color: #aab;
    font-size: 0.85rem;
    overflow: hidden;
}

.site-footer[b-7mhuvw4wjf]::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(700px 260px at 50% -40%, #000, transparent 75%);
    -webkit-mask-image: radial-gradient(700px 260px at 50% -40%, #000, transparent 75%);
    pointer-events: none;
}

.site-footer > *[b-7mhuvw4wjf] {
    position: relative;
    z-index: 1;
}

.site-footer p[b-7mhuvw4wjf] {
    margin: 0 0 4px;
}

.site-footer strong[b-7mhuvw4wjf] {
    color: #fff;
}

.footer-disclaimer[b-7mhuvw4wjf] {
    font-size: 0.78rem;
    color: #667;
    margin-top: 4px !important;
}

.footer-m-stripe[b-7mhuvw4wjf] {
    height: 3px;
    background: linear-gradient(90deg, #00A3E0 0%, #0066B1 33%, #312783 66%, #E2001A 100%);
    margin-bottom: 20px;
}

.footer-links[b-7mhuvw4wjf] {
    margin-top: 10px !important;
    font-size: 0.82rem;
}

.footer-links a[b-7mhuvw4wjf] {
    color: #8899bb;
    text-decoration: none;
    transition: color 0.15s;
}

.footer-links a:hover[b-7mhuvw4wjf] {
    color: #fff;
    text-decoration: underline;
}

#blazor-error-ui[b-7mhuvw4wjf] {
    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[b-7mhuvw4wjf] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/* ── Always-visible nav links (My Cars + Logout) ── */
.nav-always[b-7mhuvw4wjf] {
    display: none;
}

.nav-link-burger-only[b-7mhuvw4wjf] {
    display: flex;
}

/* ── Burger button (hidden on desktop) ── */
.burger-btn[b-7mhuvw4wjf] {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 201;
}

.burger-icon[b-7mhuvw4wjf],
.burger-icon[b-7mhuvw4wjf]::before,
.burger-icon[b-7mhuvw4wjf]::after {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.2s;
    position: relative;
}

.burger-icon[b-7mhuvw4wjf]::before,
.burger-icon[b-7mhuvw4wjf]::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
}

.burger-icon[b-7mhuvw4wjf]::before {
    top: -7px;
}

.burger-icon[b-7mhuvw4wjf]::after {
    top: 7px;
}

/* Animate to X when open */
.menu-open .burger-icon[b-7mhuvw4wjf] {
    background: transparent;
}

.menu-open .burger-icon[b-7mhuvw4wjf]::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-open .burger-icon[b-7mhuvw4wjf]::after {
    top: 0;
    transform: rotate(-45deg);
}

/* ── Mobile responsive ── */
@media (max-width: 768px) {
    .nav-always[b-7mhuvw4wjf] {
        display: flex;
        align-items: center;
        gap: 4px;
        margin-left: auto;
        margin-right: 8px;
    }

    .nav-always .nav-link[b-7mhuvw4wjf] {
        padding: 6px 10px;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .nav-always .logout-btn[b-7mhuvw4wjf] {
        margin-top: 0;
        border-top: none;
        padding-top: 6px;
    }

    .nav-link-burger-only[b-7mhuvw4wjf] {
        display: none !important;
    }

    .burger-btn[b-7mhuvw4wjf] {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links[b-7mhuvw4wjf] {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 260px;
        height: 100dvh;
        background: linear-gradient(180deg, #003d6b 0%, #00274a 100%);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 16px 24px;
        gap: 2px;
        box-shadow: -4px 0 24px rgba(0,0,0,0.4);
        z-index: 200;
        overflow-y: auto;
    }

    .menu-open .nav-links[b-7mhuvw4wjf] {
        display: flex;
    }

    .nav-link[b-7mhuvw4wjf] {
        padding: 12px 16px;
        font-size: 1rem;
        border-radius: 8px;
        width: 100%;
        text-align: left;
    }

    .nav-link:hover[b-7mhuvw4wjf] {
        background: rgba(255,255,255,0.1);
    }

    .lang-selector[b-7mhuvw4wjf] {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.15);
        padding-top: 12px;
        margin-top: 8px;
        justify-content: center;
    }

    .logout-btn[b-7mhuvw4wjf] {
        margin-top: auto;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 14px;
    }

    /* Overlay behind menu */
    .menu-open[b-7mhuvw4wjf]::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 199;
    }

    .nav-container[b-7mhuvw4wjf] {
        padding: 0 16px;
    }

    .main-content[b-7mhuvw4wjf] {
        padding: 20px 16px;
    }
}

/* ── Structured app shell ── */
.desktop-primary-nav[b-7mhuvw4wjf] {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
}

.desktop-primary-nav .nav-link.active[b-7mhuvw4wjf] {
    background: rgba(255, 255, 255, .2);
    color: #fff;
}

.more-menu[b-7mhuvw4wjf],
.compact-menu[b-7mhuvw4wjf] {
    position: relative;
    color: #fff;
}

.more-menu summary[b-7mhuvw4wjf],
.compact-menu summary[b-7mhuvw4wjf] {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0 12px;
    border-radius: 9px;
    color: rgba(255, 255, 255, .9);
    font-weight: 650;
    cursor: pointer;
    list-style: none;
}

.more-menu summary[b-7mhuvw4wjf]::-webkit-details-marker,
.compact-menu summary[b-7mhuvw4wjf]::-webkit-details-marker {
    display: none;
}

.more-menu[open] summary[b-7mhuvw4wjf],
.more-menu summary:hover[b-7mhuvw4wjf],
.compact-menu[open] summary[b-7mhuvw4wjf],
.compact-menu summary:hover[b-7mhuvw4wjf] {
    background: rgba(255, 255, 255, .16);
}

.more-menu-panel[b-7mhuvw4wjf],
.compact-menu-panel[b-7mhuvw4wjf] {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 250;
    display: grid;
    min-width: 220px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 16px 45px rgba(14, 29, 55, .28);
}

.more-menu-panel[b-7mhuvw4wjf]::before,
.compact-menu-panel[b-7mhuvw4wjf]::before {
    content: "";
    position: absolute;
    top: -7px;
    right: 18px;
    width: 14px;
    height: 14px;
    background: #fff;
    transform: rotate(45deg);
}

.more-menu-panel > a[b-7mhuvw4wjf],
.compact-menu-panel > a[b-7mhuvw4wjf] {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 8px 11px;
    border-radius: 8px;
    color: #344054;
    text-decoration: none;
    font-weight: 600;
}

.more-menu-panel > a:hover[b-7mhuvw4wjf],
.compact-menu-panel > a:hover[b-7mhuvw4wjf] {
    background: #eef4fd;
    color: #1558a6;
}

.more-menu-panel .more-logout[b-7mhuvw4wjf],
.compact-menu-panel .more-logout[b-7mhuvw4wjf] {
    color: #a43b32;
}

.compact-menu-panel hr[b-7mhuvw4wjf] {
    width: 100%;
    margin: 5px 0;
    border: 0;
    border-top: 1px solid #e7eaf0;
}

.menu-languages[b-7mhuvw4wjf] {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 7px;
    margin-top: 5px;
    padding: 10px 8px 4px;
    border-top: 1px solid #e7eaf0;
}

.compact-menu[b-7mhuvw4wjf] {
    display: none;
    margin-left: auto;
}

.compact-menu summary[b-7mhuvw4wjf] {
    min-width: 44px;
    padding: 0;
    font-size: 1.05rem;
    letter-spacing: 2px;
}

.mobile-bottom-nav[b-7mhuvw4wjf] {
    display: none;
}

@media (max-width: 900px) {
    .desktop-primary-nav[b-7mhuvw4wjf] {
        display: none;
    }

    .compact-menu[b-7mhuvw4wjf] {
        display: block;
    }

    .compact-menu-panel[b-7mhuvw4wjf] {
        width: min(300px, calc(100vw - 24px));
    }
}

@media (max-width: 768px) {
    .top-nav[b-7mhuvw4wjf] {
        position: sticky;
    }

    .nav-container[b-7mhuvw4wjf] {
        height: 60px;
    }

    .brand[b-7mhuvw4wjf] {
        font-size: 1.15rem;
    }

    .brand-bolt[b-7mhuvw4wjf] {
        width: 40px;
        height: 40px;
    }

    .mobile-bottom-nav[b-7mhuvw4wjf] {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 180;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        min-height: 68px;
        padding: 5px max(8px, env(safe-area-inset-right)) calc(5px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
        border-top: 1px solid #dce3ed;
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 -5px 22px rgba(31, 49, 78, .13);
        backdrop-filter: blur(12px);
    }

    .mobile-bottom-nav a[b-7mhuvw4wjf] {
        display: flex;
        min-width: 0;
        min-height: 48px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 2px;
        border-radius: 10px;
        color: #667085;
        text-decoration: none;
    }

    .mobile-bottom-nav a span[b-7mhuvw4wjf] {
        font-size: 1.15rem;
        line-height: 1;
    }

    .mobile-bottom-nav a b[b-7mhuvw4wjf] {
        max-width: 100%;
        overflow: hidden;
        font-size: .68rem;
        font-weight: 700;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .mobile-bottom-nav a.active[b-7mhuvw4wjf] {
        background: #eaf2ff;
        color: #1558a6;
    }

    .main-content[b-7mhuvw4wjf] {
        padding-bottom: calc(92px + env(safe-area-inset-bottom));
    }

    .site-footer[b-7mhuvw4wjf] {
        padding-bottom: calc(88px + env(safe-area-inset-bottom));
    }
}

@media (max-width: 420px) {
    .nav-container[b-7mhuvw4wjf] {
        padding: 0 12px;
    }

    .main-content[b-7mhuvw4wjf] {
        padding-right: 12px;
        padding-left: 12px;
    }
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-xbcmgys1yq],
.components-reconnect-repeated-attempt-visible[b-xbcmgys1yq],
.components-reconnect-failed-visible[b-xbcmgys1yq],
.components-pause-visible[b-xbcmgys1yq],
.components-resume-failed-visible[b-xbcmgys1yq],
.components-rejoining-animation[b-xbcmgys1yq] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-xbcmgys1yq],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-xbcmgys1yq],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-xbcmgys1yq],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-xbcmgys1yq],
#components-reconnect-modal.components-reconnect-retrying[b-xbcmgys1yq],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-xbcmgys1yq],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-xbcmgys1yq],
#components-reconnect-modal.components-reconnect-failed[b-xbcmgys1yq],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-xbcmgys1yq] {
    display: block;
}


#components-reconnect-modal[b-xbcmgys1yq] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-xbcmgys1yq 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-xbcmgys1yq 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-xbcmgys1yq 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-xbcmgys1yq]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-xbcmgys1yq 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-xbcmgys1yq {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-xbcmgys1yq {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-xbcmgys1yq {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-xbcmgys1yq] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-xbcmgys1yq] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-xbcmgys1yq] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-xbcmgys1yq] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-xbcmgys1yq] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-xbcmgys1yq] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-xbcmgys1yq] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-xbcmgys1yq 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-xbcmgys1yq] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-xbcmgys1yq {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/About.razor.rz.scp.css */
.about-page[b-0abj3qzijw] {
    max-width: 700px;
    margin: 0 auto;
    padding: 32px 0 64px;
}

.about-back[b-0abj3qzijw] {
    display: inline-block;
    color: var(--bmw-blue);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 24px;
}

.about-back:hover[b-0abj3qzijw] {
    text-decoration: underline;
}

.about-card[b-0abj3qzijw] {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--bmw-border);
    overflow: hidden;
}

.about-header[b-0abj3qzijw] {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 32px 32px 24px;
    background: linear-gradient(135deg, #e8f0fe, #d0e3ff);
    border-bottom: 1px solid var(--bmw-border);
}

.about-avatar[b-0abj3qzijw] {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--bmw-blue);
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-header h1[b-0abj3qzijw] {
    font-size: 1.5rem;
    margin: 0 0 4px;
    color: var(--bmw-text);
}

.about-byline[b-0abj3qzijw] {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.about-body[b-0abj3qzijw] {
    padding: 28px 32px;
}

.about-body p[b-0abj3qzijw] {
    color: #444;
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0 0 16px;
}

.about-body p:last-child[b-0abj3qzijw] {
    margin-bottom: 0;
}

.about-cta[b-0abj3qzijw] {
    padding: 24px 32px;
    background: #f8f9fb;
    border-top: 1px solid var(--bmw-border);
    text-align: center;
}

.about-cta p[b-0abj3qzijw] {
    color: #666;
    font-size: 0.95rem;
    margin: 0 0 16px;
}

@media (max-width: 640px) {
    .about-header[b-0abj3qzijw] {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }

    .about-body[b-0abj3qzijw],
    .about-cta[b-0abj3qzijw] {
        padding-left: 20px;
        padding-right: 20px;
    }

    .about-header h1[b-0abj3qzijw] {
        font-size: 1.3rem;
    }
}
/* /Components/Pages/AdminActivation.razor.rz.scp.css */
.activity-filters[b-29ffmfpt1l] { display: flex; align-items: end; flex-wrap: wrap; gap: 14px; padding: 16px; margin: 16px 0; border: 1px solid #dce4f0; border-radius: 14px; background: #fff; }
.activity-page-heading[b-29ffmfpt1l]  h1 { font-size: clamp(1.5rem, 4vw, 2.2rem); overflow-wrap: anywhere; }
.activity-filters label[b-29ffmfpt1l] { display: grid; min-width: 0; max-width: 100%; gap: 5px; color: #41516a; font-size: .78rem; font-weight: 700; }
.activity-filters select[b-29ffmfpt1l] { min-width: 0; max-width: 100%; min-height: 39px; padding: 8px 30px 8px 10px; border: 1px solid #cbd6e6; border-radius: 8px; background: #f9fbfd; color: #253750; font: inherit; }
.activity-filters .activity-checkbox[b-29ffmfpt1l] { display: flex; align-items: center; align-self: center; gap: 7px; font-weight: 500; }
.activity-filters button[b-29ffmfpt1l] { margin-left: auto; }
.activity-baseline[b-29ffmfpt1l] { padding: 20px; margin-bottom: 24px; border: 1px solid #d8e5f6; border-radius: 16px; background: linear-gradient(120deg,#f0f6ff,#fff 65%,#f7f3ff); }
.activity-eyebrow[b-29ffmfpt1l] { color: #286ab3; font-weight: 800; font-size: .64rem; letter-spacing: .09em; }
h2[b-29ffmfpt1l] { margin: 4px 0 8px; color: #22354f; font-size: 1.05rem; }
p[b-29ffmfpt1l] { color: #637187; font-size: .8rem; line-height: 1.6; }
small[b-29ffmfpt1l] { color: #728098; font-size: .7rem; line-height: 1.5; }
a[b-29ffmfpt1l] { color: #1a62b5; text-decoration: none; font-weight: 650; }
a:hover[b-29ffmfpt1l] { text-decoration: underline; }
.activity-baseline-counts[b-29ffmfpt1l] { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 12px; margin: 14px 0; }
.activity-baseline-counts > *[b-29ffmfpt1l] { display: flex; flex-direction: column; gap: 4px; padding: 13px; border-radius: 10px; background: #fff; border: 1px solid #e1e8f3; }
.activity-baseline-counts strong[b-29ffmfpt1l] { font-size: 1.5rem; color: #254b7c; }
.activity-baseline-counts span[b-29ffmfpt1l] { color: #687990; font-size: .74rem; font-weight: 500; }
.activity-section-heading[b-29ffmfpt1l] { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.activity-section-heading p[b-29ffmfpt1l] { margin: 4px 0; }
.activity-kpis[b-29ffmfpt1l] { display: grid; grid-template-columns: repeat(6,minmax(0,1fr)); gap: 9px; margin-bottom: 14px; }
.activity-kpis > div[b-29ffmfpt1l] { display: flex; flex-direction: column; gap: 4px; padding: 14px; border: 1px solid #dfe6ef; border-radius: 12px; background: #fff; overflow-wrap: anywhere; }
.activity-kpis strong[b-29ffmfpt1l] { font-size: 1.6rem; color: #224b82; }
.activity-kpis span[b-29ffmfpt1l] { font-size: .73rem; font-weight: 700; color: #465775; }
.activity-kpis small[b-29ffmfpt1l] { font-size: .64rem; }
.activity-kpis .activity-attention[b-29ffmfpt1l] { border-color: #f1c9ba; background: #fffbf8; }
.activity-kpis .activity-attention strong[b-29ffmfpt1l], .activity-warning-text[b-29ffmfpt1l] { color: #ad421f; }
.activity-note[b-29ffmfpt1l] { display: grid; gap: 5px; margin: 12px 0 20px; padding: 15px; border: 1px solid #e6e1f2; border-left: 4px solid #8b76b9; border-radius: 10px; background: #faf8fd; color: #635775; font-size: .76rem; line-height: 1.6; }
.activity-note strong[b-29ffmfpt1l] { color: #4c3d66; }
.activity-overview-grid[b-29ffmfpt1l] { display: grid; grid-template-columns: 1.3fr 1fr; gap: 15px; margin-bottom: 16px; }
.activity-step[b-29ffmfpt1l] { margin: 13px 0; }
.activity-step > div:first-child[b-29ffmfpt1l] { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 6px; color: #40536c; font-size: .79rem; }
.activity-step strong[b-29ffmfpt1l] { white-space: nowrap; color: #254b7b; }
.activity-step strong small[b-29ffmfpt1l] { display: inline-block; min-width: 39px; text-align: right; }
.activity-step > div > span > small[b-29ffmfpt1l] { display: inline-block; margin-left: 5px; padding: 1px 5px; background: #f1edf8; border-radius: 5px; color: #716084; font-size: .6rem; }
.activity-meter[b-29ffmfpt1l] { height: 7px; overflow: hidden; border-radius: 5px; background: #edf1f6; }
.activity-meter > span[b-29ffmfpt1l] { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg,#3279d0,#9894d4); }
.activity-funnel > small[b-29ffmfpt1l] { display: block; margin-top: 18px; }
.activity-failure-row[b-29ffmfpt1l] { display: flex; gap: 12px; padding: 11px 0; border-top: 1px solid #edf0f5; align-items: center; color: #5a4d48; font-size: .82rem; }
.activity-failure-row > strong[b-29ffmfpt1l] { display: grid; place-items: center; min-width: 32px; height: 32px; border-radius: 8px; background: #fff1eb; color: #a54325; }
.activity-failure-row small[b-29ffmfpt1l] { display: block; }
.activity-failures > a[b-29ffmfpt1l] { display: inline-block; margin-top: 12px; font-size: .78rem; }
.activity-empty[b-29ffmfpt1l] { display: grid; gap: 9px; place-items: center; padding: 25px 10px; text-align: center; color: #64758b; }
.activity-empty > span[b-29ffmfpt1l] { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: #edf5f1; color: #43745c; font-size: 1.3rem; }
.activity-empty strong[b-29ffmfpt1l] { font-size: .9rem; }
.activity-empty p[b-29ffmfpt1l] { margin: 0; }
.activity-people[b-29ffmfpt1l] { margin-bottom: 16px; }
.activity-table-scroll[b-29ffmfpt1l] { overflow-x: auto; border: 1px solid #e2e8f0; border-radius: 10px; }
table[b-29ffmfpt1l] { width: 100%; border-collapse: collapse; font-size: .76rem; text-align: left; }
th[b-29ffmfpt1l] { padding: 11px; background: #f6f8fc; color: #576985; font-size: .7rem; font-weight: 800; }
td[b-29ffmfpt1l] { padding: 12px 11px; border-top: 1px solid #e9eef5; color: #4d5e75; vertical-align: top; }
td small[b-29ffmfpt1l] { display: block; margin-top: 3px; font-size: .64rem; }
td:first-child strong[b-29ffmfpt1l] { display: block; overflow-wrap: anywhere; min-width: 150px; }
td:nth-child(3)[b-29ffmfpt1l] { min-width: 210px; }
td:nth-child(4)[b-29ffmfpt1l], td:last-child[b-29ffmfpt1l] { white-space: nowrap; }
tr.activity-selected[b-29ffmfpt1l] { background: #edf5ff; }
.activity-pagination[b-29ffmfpt1l] { display: flex; justify-content: center; align-items: center; gap: 16px; margin: 15px 0 0; font-size: .75rem; color: #718099; }
.activity-history[b-29ffmfpt1l] { margin: 12px 0; padding: 12px; background: #f7f9fc; border-radius: 9px; }
.activity-history summary[b-29ffmfpt1l] { cursor: pointer; color: #52627b; font-size: .78rem; font-weight: 650; }
.activity-history dl[b-29ffmfpt1l] { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin: 14px 0; }
.activity-history dt[b-29ffmfpt1l] { color: #687994; font-size: .7rem; }
.activity-history dd[b-29ffmfpt1l] { margin: 3px 0; color: #344d70; font-size: .76rem; }
.activity-timeline[b-29ffmfpt1l] { scroll-margin-top: 20px; }
.activity-timeline h2[b-29ffmfpt1l] { overflow-wrap: anywhere; }
.activity-timeline ol[b-29ffmfpt1l] { list-style: none; padding: 0; margin: 14px 0 0; }
.activity-timeline li[b-29ffmfpt1l] { display: grid; grid-template-columns: 144px 1fr auto; gap: 14px; padding: 14px; border-top: 1px solid #e6ecf5; border-left: 3px solid #5a90cc; font-size: .78rem; }
.activity-timeline li.browser-event[b-29ffmfpt1l] { border-left-color: #ab96c6; }
.activity-timeline time[b-29ffmfpt1l] { color: #73829a; font-size: .69rem; font-variant-numeric: tabular-nums; }
.activity-timeline li strong[b-29ffmfpt1l] { color: #364f70; }
.activity-timeline li p[b-29ffmfpt1l] { margin: 3px 0; font-size: .76rem; }
.activity-source[b-29ffmfpt1l] { align-self: start; padding: 3px 7px; border-radius: 5px; background: #edf4fb; color: #53779d; font-size: .61rem; }
.browser-event .activity-source[b-29ffmfpt1l] { background: #f4eff8; color: #7f649a; }
@media (max-width: 1100px) { .activity-kpis[b-29ffmfpt1l] { grid-template-columns: repeat(3,minmax(0,1fr)); } }
@media (max-width: 760px) { .activity-overview-grid[b-29ffmfpt1l] { grid-template-columns: 1fr; } .activity-baseline-counts[b-29ffmfpt1l] { grid-template-columns: 1fr; } .activity-history dl[b-29ffmfpt1l] { grid-template-columns: repeat(2,1fr); } .activity-timeline li[b-29ffmfpt1l] { grid-template-columns: 1fr auto; gap: 6px; } .activity-timeline time[b-29ffmfpt1l] { grid-column: 1; } .activity-timeline li > div[b-29ffmfpt1l] { grid-column: 1; } .activity-source[b-29ffmfpt1l] { grid-column: 2; grid-row: 1; } }
@media (max-width: 480px) { .activity-page-heading[b-29ffmfpt1l]  .page-header { align-items: flex-start; flex-direction: column; gap: 10px; } .activity-kpis[b-29ffmfpt1l] { grid-template-columns: repeat(2,minmax(0,1fr)); } .activity-filters[b-29ffmfpt1l] { align-items: stretch; } .activity-filters label[b-29ffmfpt1l] { width: 100%; } .activity-filters button[b-29ffmfpt1l] { width: 100%; } .activity-pagination[b-29ffmfpt1l] { gap: 10px; font-size: .67rem; } }
/* /Components/Pages/BmwGuide.razor.rz.scp.css */
/* ── Guide page styles ── */
.guide-page[b-vo1gv3vtkf] {
    max-width: 800px;
    margin: 0 auto;
    padding: 32px 0 64px;
}

.guide-back[b-vo1gv3vtkf] {
    display: inline-block;
    color: var(--bmw-blue);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 24px;
}

.guide-back:hover[b-vo1gv3vtkf] {
    text-decoration: underline;
}

.guide-page > h1[b-vo1gv3vtkf] {
    font-size: 2rem;
    margin-bottom: 8px;
}

.guide-subtitle[b-vo1gv3vtkf] {
    color: var(--bmw-text-muted);
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* ── Intro box ── */
.guide-intro[b-vo1gv3vtkf] {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: linear-gradient(135deg, #e8f0fe, #d0e3ff);
    border-radius: 12px;
    padding: 24px 28px;
    margin-bottom: 48px;
    border-left: 4px solid var(--bmw-blue);
    animation: fadeInUp 0.5s ease-out both;
}

.guide-intro-icon[b-vo1gv3vtkf] {
    font-size: 2rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.guide-intro-text h2[b-vo1gv3vtkf] {
    font-size: 1.1rem;
    margin: 0 0 8px;
    color: var(--bmw-blue-dark);
}

.guide-intro-text p[b-vo1gv3vtkf] {
    margin: 0;
    color: #333;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ── Step card ── */
.guide-step[b-vo1gv3vtkf] {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    animation: fadeInUp 0.5s ease-out both;
}

.guide-step:nth-child(3)[b-vo1gv3vtkf]  { animation-delay: 0s; }
.guide-step:nth-child(4)[b-vo1gv3vtkf]  { animation-delay: 0.06s; }
.guide-step:nth-child(5)[b-vo1gv3vtkf]  { animation-delay: 0.12s; }
.guide-step:nth-child(6)[b-vo1gv3vtkf]  { animation-delay: 0.18s; }
.guide-step:nth-child(7)[b-vo1gv3vtkf]  { animation-delay: 0.24s; }
.guide-step:nth-child(8)[b-vo1gv3vtkf]  { animation-delay: 0.30s; }

.guide-step-number[b-vo1gv3vtkf] {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bmw-blue);
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.guide-step-content[b-vo1gv3vtkf] {
    flex: 1;
    min-width: 0;
}

.guide-step-content h2[b-vo1gv3vtkf] {
    font-size: 1.25rem;
    margin: 0 0 8px;
}

.guide-step-content p[b-vo1gv3vtkf] {
    color: #555;
    line-height: 1.7;
    margin: 0 0 16px;
}

/* ── Screenshot ── */
.guide-screenshot[b-vo1gv3vtkf] {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    border: 1px solid var(--bmw-border);
    display: inline-block;
    max-width: 100%;
}

.guide-step-content .guide-screenshot[b-vo1gv3vtkf] {
    display: block;
    width: fit-content;
    margin: 0 auto;
}

.guide-screenshot img[b-vo1gv3vtkf] {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ── CTA ── */
.guide-cta[b-vo1gv3vtkf] {
    text-align: center;
    margin-top: 48px;
    padding: 32px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
    animation: fadeInUp 0.5s ease-out both;
    animation-delay: 0.35s;
}

.guide-cta p[b-vo1gv3vtkf] {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--bmw-text);
}

.guide-cta-hint[b-vo1gv3vtkf] {
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    color: #666 !important;
    margin-bottom: 20px !important;
}

.guide-cta-buttons[b-vo1gv3vtkf] {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.guide-reminder[b-vo1gv3vtkf] {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 34px;
    padding: 22px 24px;
    border: 1px solid #cadcf2;
    border-radius: 12px;
    background: linear-gradient(135deg, #f3f8ff, #fff);
}

.guide-reminder-icon[b-vo1gv3vtkf] {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e3efff;
    font-size: 1.25rem;
}

.guide-reminder h2[b-vo1gv3vtkf] {
    margin: 0 0 5px;
    font-size: 1.05rem;
}

.guide-reminder p[b-vo1gv3vtkf] {
    margin: 0 0 12px;
    color: #647186;
    font-size: .86rem;
    line-height: 1.55;
}

/* ── Responsive ── */
@media (max-width: 640px) {
    .guide-step[b-vo1gv3vtkf] {
        flex-direction: column;
        gap: 12px;
    }

    .guide-page > h1[b-vo1gv3vtkf] {
        font-size: 1.5rem;
    }

    .guide-reminder[b-vo1gv3vtkf] {
        flex-direction: column;
    }
}
/* /Components/Pages/ChargingDetail.razor.rz.scp.css */
.location-correction-hint[b-e3r8d28vyc] {
    color: #667085;
    font-size: 0.8rem;
    line-height: 1.45;
    margin: 12px 0 10px;
}

.location-correction-status[b-e3r8d28vyc] {
    background: #e8f5e9;
    border: 1px solid #b8d6c1;
    border-radius: 8px;
    color: #24683a;
    font-size: 0.8rem;
    margin-top: 10px;
    padding: 8px 10px;
}

.nearby-charger-picker[b-e3r8d28vyc] {
    border-top: 1px solid #e5e7eb;
    display: grid;
    gap: 6px;
    margin-top: 14px;
    padding-top: 12px;
}

.nearby-charger-picker > small[b-e3r8d28vyc] {
    color: #667085;
    line-height: 1.4;
}

.nearby-charger-list[b-e3r8d28vyc] {
    display: grid;
    gap: 8px;
    margin-top: 6px;
    max-height: 310px;
    overflow-y: auto;
    padding-right: 3px;
}

.nearby-charger-option[b-e3r8d28vyc] {
    align-items: center;
    border: 1px solid #d9e0e8;
    border-radius: 9px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    padding: 9px 10px;
}

.nearby-charger-option.selected[b-e3r8d28vyc] {
    background: #eef7ff;
    border-color: #8fc5ea;
}

.nearby-charger-option > div[b-e3r8d28vyc] {
    display: grid;
    gap: 2px;
    min-width: 0;
}

.nearby-charger-option span[b-e3r8d28vyc],
.nearby-charger-option small[b-e3r8d28vyc] {
    color: #667085;
    font-size: 0.76rem;
    overflow-wrap: anywhere;
}

.nearby-charger-option .btn[b-e3r8d28vyc] {
    flex: 0 0 auto;
}

@media (max-width: 520px) {
    .nearby-charger-option[b-e3r8d28vyc] {
        align-items: stretch;
        flex-direction: column;
    }
}
/* /Components/Pages/Feedback.razor.rz.scp.css */
.feedback-intro[b-6u59mr8jrd] {
    background: #f0f6ff;
    border: 1px solid #b3d4fc;
    border-radius: 10px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: #333;
    line-height: 1.6;
}

.feedback-intro p[b-6u59mr8jrd] {
    margin: 0;
}

textarea.form-control[b-6u59mr8jrd] {
    resize: vertical;
    min-height: 120px;
}

select.form-control[b-6u59mr8jrd] {
    appearance: auto;
}
/* /Components/Pages/Privacy.razor.rz.scp.css */
.privacy-page[b-qhbpjwu7td] {
    max-width: 860px;
    margin: 0 auto;
    padding: 32px 0 64px;
}

.privacy-back[b-qhbpjwu7td] {
    display: inline-block;
    margin-bottom: 22px;
    color: var(--bmw-blue);
    font-weight: 600;
    text-decoration: none;
}

.privacy-hero[b-qhbpjwu7td] {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 18px;
    padding: 28px;
    border: 1px solid #cdddf0;
    border-radius: 16px;
    background: linear-gradient(135deg, #eef6ff, #fff 58%, #f6f2ff);
}

.privacy-hero > span[b-qhbpjwu7td] {
    display: grid;
    place-items: center;
    flex: 0 0 54px;
    width: 54px;
    height: 54px;
    border-radius: 15px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(38, 80, 132, .1);
    font-size: 1.65rem;
}

.privacy-hero small[b-qhbpjwu7td] {
    color: #326bb2;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.privacy-hero h1[b-qhbpjwu7td] {
    margin: 4px 0 7px;
}

.privacy-hero p[b-qhbpjwu7td] {
    max-width: 680px;
    margin: 0;
    color: #607087;
    line-height: 1.65;
}

.privacy-promises[b-qhbpjwu7td] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 9px;
    margin-bottom: 14px;
}

.privacy-promises > div[b-qhbpjwu7td] {
    display: flex;
    gap: 9px;
    align-items: center;
    min-height: 64px;
    padding: 12px 14px;
    border: 1px solid #dfe6ee;
    border-radius: 11px;
    background: #fff;
    color: #3b4c62;
    font-size: .78rem;
}

.privacy-promises span[b-qhbpjwu7td] {
    font-size: 1.2rem;
}

.privacy-card[b-qhbpjwu7td] {
    margin-bottom: 11px;
    padding: 20px 22px;
    border: 1px solid #e0e5eb;
    border-radius: 13px;
    background: #fff;
    box-shadow: 0 3px 13px rgba(30, 48, 73, .035);
}

.privacy-card.privacy-highlight[b-qhbpjwu7td] {
    border-color: #bad9c4;
    background: #f5fbf7;
}

.privacy-card h2[b-qhbpjwu7td] {
    margin: 0 0 8px;
    color: #2d4058;
    font-size: 1.05rem;
}

.privacy-card p[b-qhbpjwu7td],
.privacy-card li[b-qhbpjwu7td] {
    color: #5e6c7e;
    font-size: .86rem;
    line-height: 1.65;
}

.privacy-card p[b-qhbpjwu7td] {
    margin: 0 0 8px;
}

.privacy-card p:last-child[b-qhbpjwu7td] {
    margin-bottom: 0;
}

.privacy-card ul[b-qhbpjwu7td] {
    margin: 0;
    padding-left: 20px;
}

.privacy-card li + li[b-qhbpjwu7td] {
    margin-top: 5px;
}

.privacy-card a[b-qhbpjwu7td] {
    color: var(--bmw-blue);
}

.privacy-updated[b-qhbpjwu7td] {
    margin-top: 18px;
    color: #8a94a1;
    font-size: .75rem;
    text-align: center;
}

@media (max-width: 650px) {
    .privacy-hero[b-qhbpjwu7td] {
        flex-direction: column;
        padding: 20px;
    }

    .privacy-promises[b-qhbpjwu7td] {
        grid-template-columns: 1fr;
    }

    .privacy-card[b-qhbpjwu7td] {
        padding: 17px;
    }
}
/* /Components/Shared/ActualPriceEditor.razor.rz.scp.css */
.actual-price-backdrop[b-nq19wldcuz] {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(20, 27, 45, 0.58);
    backdrop-filter: blur(4px);
}

.actual-price-dialog[b-nq19wldcuz] {
    width: min(620px, 100%);
    max-height: min(820px, calc(100vh - 40px));
    overflow: auto;
    border: 1px solid #dce3ee;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 24px 70px rgba(20, 30, 55, 0.28);
}

.actual-price-dialog form[b-nq19wldcuz] {
    padding: 22px;
}

.actual-price-header[b-nq19wldcuz] {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
}

.actual-price-header h2[b-nq19wldcuz] {
    margin: 2px 0 0;
    color: #1f2937;
    font-size: 1.45rem;
}

.actual-price-header p[b-nq19wldcuz] {
    margin: 4px 0 0;
    color: #667085;
    font-size: .84rem;
}

.actual-price-eyebrow[b-nq19wldcuz] {
    color: #6a56a3;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.actual-price-close[b-nq19wldcuz] {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: #f2f4f7;
    color: #475467;
    font-size: 1.5rem;
    cursor: pointer;
}

.actual-price-intro[b-nq19wldcuz] {
    margin: 18px 0;
    padding: 11px 13px;
    border-radius: 10px;
    background: #f5f8fc;
    color: #596579;
    font-size: .84rem;
    line-height: 1.45;
}

.actual-price-amount-row[b-nq19wldcuz] {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 120px;
    gap: 10px;
}

.actual-price-amount-row label[b-nq19wldcuz],
.currency-search-label[b-nq19wldcuz] {
    display: grid;
    gap: 6px;
    color: #475467;
    font-size: .78rem;
    font-weight: 700;
}

.actual-price-amount[b-nq19wldcuz],
.currency-search-label input[b-nq19wldcuz] {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid #cfd7e5;
    border-radius: 10px;
    background: #fff;
    color: #1f2937;
    font: inherit;
    box-sizing: border-box;
}

.actual-price-amount[b-nq19wldcuz] {
    font-size: 1.1rem;
    font-weight: 750;
}

.actual-price-amount:focus[b-nq19wldcuz],
.currency-search-label input:focus[b-nq19wldcuz] {
    outline: 3px solid rgba(26, 115, 232, .14);
    border-color: #1a73e8;
}

.actual-price-selected-currency[b-nq19wldcuz] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 13px;
    border: 1px solid #cfd7e5;
    border-radius: 10px;
    background: #f8fafc;
}

.actual-price-selected-currency span[b-nq19wldcuz] {
    color: #7a8494;
    font-size: .7rem;
}

.actual-price-selected-currency strong[b-nq19wldcuz] {
    color: #27364c;
    font-size: 1.1rem;
}

.actual-price-reference[b-nq19wldcuz] {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
    padding: 7px 10px;
    border-radius: 8px;
    background: #f6f7f9;
    color: #667085;
    font-size: .75rem;
}

.actual-price-reference strong[b-nq19wldcuz] {
    color: #475467;
}

.actual-price-recent[b-nq19wldcuz] {
    margin: 16px 0;
}

.actual-price-recent > span[b-nq19wldcuz] {
    display: block;
    margin-bottom: 7px;
    color: #667085;
    font-size: .74rem;
    font-weight: 700;
}

.actual-price-recent > div[b-nq19wldcuz] {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.currency-chip[b-nq19wldcuz] {
    min-width: 58px;
    padding: 7px 11px;
    border: 1px solid #c9d3e1;
    border-radius: 999px;
    background: #fff;
    color: #40516a;
    font-weight: 750;
    cursor: pointer;
}

.currency-chip.selected[b-nq19wldcuz] {
    border-color: #1a73e8;
    background: #eaf2ff;
    color: #1558a6;
}

.currency-search-label[b-nq19wldcuz] {
    margin-top: 16px;
}

.currency-options[b-nq19wldcuz] {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
    max-height: 230px;
    margin-top: 9px;
    padding: 3px;
    overflow-y: auto;
}

.currency-option[b-nq19wldcuz] {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) 18px;
    align-items: center;
    gap: 7px;
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid #e0e5ed;
    border-radius: 9px;
    background: #fff;
    color: #334155;
    text-align: left;
    cursor: pointer;
}

.currency-option:hover[b-nq19wldcuz],
.currency-option.selected[b-nq19wldcuz] {
    border-color: #8bb6ef;
    background: #f1f6ff;
}

.currency-option strong[b-nq19wldcuz] {
    color: #1d4f91;
}

.currency-option span[b-nq19wldcuz] {
    overflow: hidden;
    color: #667085;
    font-size: .75rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.currency-option b[b-nq19wldcuz] {
    color: #1a73e8;
}

.actual-price-error[b-nq19wldcuz] {
    margin-top: 12px;
    padding: 9px 11px;
    border-radius: 8px;
    background: #fff0f0;
    color: #b42318;
    font-size: .82rem;
}

.actual-price-actions[b-nq19wldcuz] {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 8px;
    align-items: center;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #e7eaf0;
}

.actual-price-remove[b-nq19wldcuz] {
    color: #b42318;
}

@media (max-width: 600px) {
    .actual-price-backdrop[b-nq19wldcuz] {
        align-items: end;
        padding: 0;
    }

    .actual-price-dialog[b-nq19wldcuz] {
        max-height: 92vh;
        border-radius: 18px 18px 0 0;
    }

    .actual-price-dialog form[b-nq19wldcuz] {
        padding: 18px 16px;
    }

    .actual-price-amount-row[b-nq19wldcuz],
    .currency-options[b-nq19wldcuz] {
        grid-template-columns: 1fr;
    }

    .currency-options[b-nq19wldcuz] {
        max-height: 205px;
    }

    .actual-price-actions[b-nq19wldcuz] {
        grid-template-columns: 1fr 1fr;
    }

    .actual-price-actions > span[b-nq19wldcuz] {
        display: none;
    }

    .actual-price-remove[b-nq19wldcuz] {
        grid-column: 1 / -1;
    }
}
/* /Components/Shared/AdminNav.razor.rz.scp.css */
.admin-route-nav[b-6jq368e7gu] {
    display: flex;
    gap: 5px;
    margin-bottom: 18px;
    padding: 6px;
    overflow-x: auto;
    border: 1px solid #dfe4eb;
    border-radius: 13px;
    background: #fff;
    scrollbar-width: thin;
}

.admin-route-nav a[b-6jq368e7gu] {
    display: flex;
    min-width: max-content;
    min-height: 42px;
    align-items: center;
    gap: 5px;
    padding: 7px 10px;
    border-radius: 9px;
    color: #536176;
    font-size: .76rem;
    font-weight: 700;
    text-decoration: none;
}

.admin-route-nav a:hover[b-6jq368e7gu] {
    background: #f0f4fa;
}

.admin-route-nav a.active[b-6jq368e7gu] {
    background: #1a73e8;
    color: #fff;
}

@media (max-width: 600px) {
    .admin-route-nav[b-6jq368e7gu] {
        margin-right: -12px;
        margin-left: -12px;
        padding-right: 12px;
        padding-left: 12px;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }
}
/* /Components/Shared/DrivingMapCard.razor.rz.scp.css */
.driving-map-card[b-qp3r2ejw7b] {
    padding: 0;
    margin-bottom: 14px;
    overflow: hidden;
    border-color: #dce4ef;
    background: #fff;
}

.driving-map-header[b-qp3r2ejw7b] {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 20px 16px;
    background: linear-gradient(120deg, #fff 0%, #f7faff 66%, #edf5ff 100%);
}

.driving-map-copy > span[b-qp3r2ejw7b] {
    color: #6476a8;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.driving-map-copy h2[b-qp3r2ejw7b] {
    margin: 3px 0 5px;
    color: #29354a;
    font-size: 1.08rem;
}

.driving-map-copy p[b-qp3r2ejw7b] {
    max-width: 720px;
    margin: 0;
    color: #6c788b;
    font-size: .82rem;
}

.driving-map-stats[b-qp3r2ejw7b] {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.driving-map-stats > div[b-qp3r2ejw7b] {
    display: flex;
    min-width: 86px;
    flex-direction: column;
    padding: 8px 11px;
    border: 1px solid rgba(138, 173, 218, .42);
    border-radius: 10px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 3px 12px rgba(39, 74, 120, .05);
}

.driving-map-stats strong[b-qp3r2ejw7b] {
    color: #27558d;
    font-size: .95rem;
}

.driving-map-stats span[b-qp3r2ejw7b] {
    color: #748094;
    font-size: .64rem;
    white-space: nowrap;
}

.driving-map-shell[b-qp3r2ejw7b] {
    position: relative;
    border-top: 1px solid #e3e9f1;
    border-bottom: 1px solid #e3e9f1;
    background: #eaf0f5;
}

.driving-overview-map[b-qp3r2ejw7b] {
    width: 100%;
    height: 410px;
    z-index: 0;
}

.driving-map-legend[b-qp3r2ejw7b] {
    position: absolute;
    z-index: 500;
    top: 12px;
    right: 12px;
    display: grid;
    gap: 6px;
    max-width: min(260px, calc(100% - 24px));
    padding: 9px 11px;
    border: 1px solid rgba(195, 207, 221, .9);
    border-radius: 9px;
    background: rgba(255, 255, 255, .93);
    box-shadow: 0 3px 14px rgba(40, 53, 72, .14);
    backdrop-filter: blur(6px);
}

.driving-map-legend span[b-qp3r2ejw7b] {
    display: flex;
    overflow: hidden;
    align-items: center;
    gap: 7px;
    color: #445268;
    font-size: .68rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.driving-map-legend i[b-qp3r2ejw7b] {
    width: 16px;
    height: 4px;
    flex: 0 0 auto;
    border-radius: 999px;
}

.driving-map-note[b-qp3r2ejw7b] {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding: 10px 15px;
    background: #fbfcfe;
    color: #778295;
    font-size: .68rem;
}

.driving-map-note span:last-child[b-qp3r2ejw7b] {
    color: #526983;
    font-weight: 700;
    white-space: nowrap;
}

.driving-map-empty[b-qp3r2ejw7b] {
    display: flex;
    min-height: 150px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-top: 1px solid #e3e9f1;
    color: #748094;
}

.driving-map-empty > span[b-qp3r2ejw7b] {
    font-size: 1.3rem;
}

.driving-map-empty p[b-qp3r2ejw7b] {
    margin: 0;
}

@media (max-width: 720px) {
    .driving-map-header[b-qp3r2ejw7b] {
        flex-direction: column;
        gap: 13px;
        padding: 16px;
    }

    .driving-map-stats[b-qp3r2ejw7b] {
        width: 100%;
    }

    .driving-map-stats > div[b-qp3r2ejw7b] {
        min-width: 0;
        flex: 1;
    }

    .driving-overview-map[b-qp3r2ejw7b] {
        height: 340px;
    }

    .driving-map-note[b-qp3r2ejw7b] {
        flex-direction: column;
        gap: 4px;
    }

    .driving-map-note span:last-child[b-qp3r2ejw7b] {
        white-space: normal;
    }
}

@media (max-width: 390px) {
    .driving-map-stats[b-qp3r2ejw7b] {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .driving-map-stats > div:last-child:nth-child(3)[b-qp3r2ejw7b] {
        grid-column: 1 / -1;
    }
}
/* /Components/Shared/VehicleBatteryCard.razor.rz.scp.css */
.cardata-card[b-u4b70f2c8e] { margin-bottom: 20px; }
.estimate-badge[b-u4b70f2c8e] {
    display: inline-block;
    background: #fff8e1;
    color: #8a6d3b;
    border: 1px solid #ffe0a3;
    border-radius: 999px;
    padding: 3px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 12px;
}
.cardata-grid[b-u4b70f2c8e] { display: flex; flex-wrap: wrap; gap: 22px; }
.cardata-metric[b-u4b70f2c8e] { display: flex; flex-direction: column; min-width: 120px; }
.cardata-metric-value[b-u4b70f2c8e] { font-size: 1.3rem; font-weight: 700; }
.cardata-metric-label[b-u4b70f2c8e] { font-size: 0.8rem; color: #777; }
.cardata-note[b-u4b70f2c8e] { font-size: 0.8rem; color: #999; margin-top: 10px; }
.cardata-history[b-u4b70f2c8e] { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin-top: 12px; }
.cardata-history th[b-u4b70f2c8e] { text-align: left; color: #666; font-weight: 600; padding: 4px 10px 4px 0; border-bottom: 1px solid #eee; }
.cardata-history td[b-u4b70f2c8e] { padding: 4px 10px 4px 0; border-bottom: 1px solid #f4f4f4; }
.battery-spark-wrap[b-u4b70f2c8e] { margin-top: 12px; }
.battery-spark[b-u4b70f2c8e] { width: 100%; height: 90px; display: block; }
.battery-spark-legend[b-u4b70f2c8e] { display: flex; gap: 16px; font-size: 0.78rem; color: #666; margin-top: 4px; }
.legend-swatch[b-u4b70f2c8e] { display: inline-block; width: 12px; height: 3px; border-radius: 2px; vertical-align: middle; margin-right: 4px; }
/* /Components/Shared/VehicleEquipment.razor.rz.scp.css */
.cardata-card[b-8ttvc6d6f9] { margin-bottom: 20px; }
.cardata-note[b-8ttvc6d6f9] { font-size: 0.8rem; color: #999; margin-top: 10px; }
.cardata-history[b-8ttvc6d6f9] { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin-top: 12px; }
.cardata-history th[b-8ttvc6d6f9] { text-align: left; color: #666; font-weight: 600; padding: 4px 10px 4px 0; border-bottom: 1px solid #eee; }
.cardata-history td[b-8ttvc6d6f9] { padding: 4px 10px 4px 0; border-bottom: 1px solid #f4f4f4; }

.tyre-grid[b-8ttvc6d6f9] { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.tyre-cell[b-8ttvc6d6f9] { border: 1px solid #eee; border-radius: 10px; padding: 12px; }
.tyre-pos[b-8ttvc6d6f9] { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.03em; color: #999; font-weight: 700; }
.tyre-dim[b-8ttvc6d6f9] { font-weight: 700; margin-top: 2px; }
.tyre-brand[b-8ttvc6d6f9] { font-size: 0.85rem; color: #555; }
.tyre-chips[b-8ttvc6d6f9] { margin: 4px 0; display: flex; gap: 4px; flex-wrap: wrap; }
.tyre-chip[b-8ttvc6d6f9] { font-size: 0.7rem; background: #eef2ff; color: #3730a3; border-radius: 999px; padding: 1px 8px; font-weight: 600; }
.tyre-pressure[b-8ttvc6d6f9] { font-size: 0.85rem; font-weight: 600; color: #2e7d32; }
.tyre-pressure.tyre-low[b-8ttvc6d6f9] { color: #c62828; }
.tyre-meta[b-8ttvc6d6f9] { font-size: 0.78rem; color: #999; margin-top: 2px; }

.sub-chips[b-8ttvc6d6f9] { display: flex; flex-wrap: wrap; gap: 8px; }
.sub-chip[b-8ttvc6d6f9] { font-size: 0.8rem; background: #f1f1f1; color: #666; border-radius: 999px; padding: 3px 12px; font-weight: 600; }
.sub-chip.sub-active[b-8ttvc6d6f9] { background: #e8f5e9; color: #2e7d32; }

@media (max-width: 640px) {
    .tyre-grid[b-8ttvc6d6f9] { grid-template-columns: 1fr; }
}
/* /Components/Shared/VehicleNav.razor.rz.scp.css */
.vehicle-nav[b-5q2o6jp12k] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 20px;
    padding: 6px;
    border: 1px solid #e1e6ee;
    border-radius: 14px;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 2px 9px rgba(35, 50, 75, .05);
}

.vehicle-nav-primary[b-5q2o6jp12k] {
    display: grid;
    grid-template-columns: repeat(4, minmax(110px, auto));
    gap: 5px;
}

.vehicle-nav-primary.has-clever[b-5q2o6jp12k] {
    grid-template-columns: repeat(5, minmax(100px, auto));
}

.vehicle-nav-tab[b-5q2o6jp12k] {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 13px;
    border-radius: 10px;
    background: transparent;
    color: #475467;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.vehicle-nav-tab:hover[b-5q2o6jp12k] {
    background: #eef4fd;
    color: #1a3d8f;
}

.vehicle-nav-tab.active[b-5q2o6jp12k] {
    background: #1a73e8;
    color: #fff;
    box-shadow: 0 2px 8px rgba(26, 115, 232, 0.3);
}

.vehicle-nav-clever:not(.active)[b-5q2o6jp12k] {
    color: #65449a;
    background: #f8f5ff;
    border-color: #ddd2ef;
}

.vehicle-nav-icon[b-5q2o6jp12k] {
    font-size: 1rem;
    line-height: 1;
}

.vehicle-more[b-5q2o6jp12k] {
    position: relative;
    flex: 0 0 auto;
}

.vehicle-more summary[b-5q2o6jp12k] {
    display: flex;
    min-height: 44px;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 10px;
    color: #596579;
    font-size: .82rem;
    font-weight: 650;
    cursor: pointer;
    list-style: none;
}

.vehicle-more summary[b-5q2o6jp12k]::-webkit-details-marker {
    display: none;
}

.vehicle-more summary:hover[b-5q2o6jp12k],
.vehicle-more[open] summary[b-5q2o6jp12k],
.vehicle-more summary.has-active-child[b-5q2o6jp12k] {
    background: #f0f3f8;
    color: #344a67;
}

.vehicle-more-panel[b-5q2o6jp12k] {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    z-index: 80;
    display: grid;
    min-width: 210px;
    padding: 7px;
    border: 1px solid #dce3ed;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 14px 35px rgba(25, 42, 70, .2);
}

.vehicle-more-panel a[b-5q2o6jp12k] {
    display: flex;
    min-height: 42px;
    align-items: center;
    padding: 8px 10px;
    border-radius: 8px;
    color: #475467;
    text-decoration: none;
    font-weight: 600;
}

.vehicle-more-panel a:hover[b-5q2o6jp12k],
.vehicle-more-panel a.active[b-5q2o6jp12k] {
    background: #eaf2ff;
    color: #1558a6;
}

@media (max-width: 760px) {
    .vehicle-nav[b-5q2o6jp12k] {
        align-items: stretch;
        flex-direction: column;
        gap: 5px;
    }

    .vehicle-nav-primary[b-5q2o6jp12k] {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .vehicle-nav-primary.has-clever[b-5q2o6jp12k] {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .vehicle-nav-tab[b-5q2o6jp12k] {
        min-width: 0;
        padding: 7px 4px;
        flex-direction: column;
        gap: 2px;
        font-size: .68rem;
        text-align: center;
    }

    .vehicle-nav-tab span:not(.vehicle-nav-icon)[b-5q2o6jp12k] {
        width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .vehicle-more summary[b-5q2o6jp12k] {
        justify-content: center;
    }

    .vehicle-more-panel[b-5q2o6jp12k] {
        right: 0;
        left: 0;
        min-width: 0;
    }
}

@media (max-width: 390px) {
    .vehicle-nav[b-5q2o6jp12k] {
        margin-right: -2px;
        margin-left: -2px;
        padding: 4px;
    }

    .vehicle-nav-tab[b-5q2o6jp12k] {
        font-size: .64rem;
    }
}
