/* /Layout/LoginControl.razor.rz.scp.css */
.login-wrapper[b-zoh2su5dok] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.login-error-msg[b-zoh2su5dok] {
    color: #ffc107;
    font-size: 0.75rem;
    margin-bottom: 4px;
    text-align: right;
}

.auth-input[b-zoh2su5dok] {
    width: 190px;
    background: #fff;
    border: 1px solid rgba(255,255,255,0.4);
    color: #333;
}

    .auth-input[b-zoh2su5dok]::placeholder {
        color: #999;
    }

    .auth-input:focus[b-zoh2su5dok] {
        background: #fff;
        border-color: dodgerblue;
        box-shadow: 0 0 0 2px rgba(30,144,255,0.2);
        color: #333;
    }

.auth-btn[b-zoh2su5dok] {
    font-weight: 500;
}

/* Password field with eye toggle */
.password-wrapper[b-zoh2su5dok] {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.auth-input-pw[b-zoh2su5dok] {
    padding-right: 28px;
}

.pw-toggle[b-zoh2su5dok] {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2px;
    line-height: 1;
}

    .pw-toggle:hover svg[b-zoh2su5dok] {
        stroke: #333;
    }
/* /Layout/MainLayout.razor.rz.scp.css */
/* MCX.Client/Layout/MainLayout.razor.css */

.page[b-qif5akxyq5] {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.top-header[b-qif5akxyq5] {
    background: linear-gradient(135deg, #1873CC 0%, #1E90FF 45%, #47A3FF 100%);
    box-shadow: 0 2px 8px rgba(30, 144, 255, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

main[b-qif5akxyq5] {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Update .content to allow natural scrolling */
.content[b-qif5akxyq5] {
    flex: 1;
    padding-top: 2rem;
    padding-bottom: 2rem;
    overflow-y: auto; /* Ensure scrolling is allowed */
}

    /* Force strip all padding for management layouts */
    .content.no-padding[b-qif5akxyq5] {
        padding: 0 !important;
    }

@media (min-width: 641px) {
    .content:not(.no-padding)[b-qif5akxyq5] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

/* Lock layout bounds ONLY when in Map Mode */
.page.map-mode[b-qif5akxyq5] {
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
}

    .page.map-mode main[b-qif5akxyq5] {
        height: 100%;
        overflow: hidden;
    }

.map-layout[b-qif5akxyq5] {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: relative;
    /* flexbox */
    display: flex;
    flex-direction: column;
}

.map-ui-layer[b-qif5akxyq5] {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; /* Lock to all 4 corners */
    z-index: 10;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.map-ui-interactive-elements[b-qif5akxyq5] {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%; /* CRITICAL: Force it to obey the screen height */
    max-height: 100%;
    overflow: hidden; /* CRITICAL: Stop infinite growth */
    pointer-events: none;
}

    /* Ensure wrappers don't block clicks */
    .map-ui-interactive-elements[b-qif5akxyq5],
    .map-ui-interactive-elements > *[b-qif5akxyq5] {
        pointer-events: none;
    }

/* 2. NEW: Explicitly re-enable clicks ONLY on actual UI panels */
.mcx-editor-sidebar[b-qif5akxyq5] {
    pointer-events: auto !important;
}

#global-map-wrapper[b-qif5akxyq5] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: auto !important;
}

main:has(.mcx-subheader) #global-map-wrapper[b-qif5akxyq5] {
    top: 41px;
    height: calc(100% - 41px);
}
/* /Layout/NavMenu.razor.rz.scp.css */
.top-row-nav[b-x67smzbxgu] {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    min-height: 4rem;
}

.navbar-brand[b-x67smzbxgu] {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-right: 2rem;
}

.navbar-brand:hover[b-x67smzbxgu] {
    color: #e0e0e0;
}

.navbar-toggler[b-x67smzbxgu] {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-left: auto;
}

.nav-menu-container[b-x67smzbxgu] {
    display: flex;
    flex: 1;
    align-items: center;
}

.flex-row-nav[b-x67smzbxgu] {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item[b-x67smzbxgu] {
    font-size: 1rem;
}

.nav-item[b-x67smzbxgu]  a {
    color: #d7d7d7;
    border-radius: 4px;
    padding: 0.5rem 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
    display: inline-block;
}

.nav-item[b-x67smzbxgu]  a.active {
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.nav-item[b-x67smzbxgu]  a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

.login-container[b-x67smzbxgu] {
    margin-left: auto;
}

@media (max-width: 640.98px) {
    .nav-menu-container[b-x67smzbxgu] {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
        padding-top: 1rem;
    }

    .flex-row-nav[b-x67smzbxgu] {
        flex-direction: column;
    }

    .nav-item[b-x67smzbxgu]  a {
        display: block;
        margin-bottom: 0.5rem;
    }

    .login-container[b-x67smzbxgu] {
        margin-left: 0;
        margin-top: 1rem;
        padding-bottom: 1rem;
    }

    .collapse[b-x67smzbxgu] {
        display: none;
    }
}

@media (min-width: 641px) {
    .navbar-toggler[b-x67smzbxgu] {
        display: none;
    }

    .collapse[b-x67smzbxgu] {
        display: flex !important;
    }
}
/* /Pages/About.razor.rz.scp.css */
.about-wrapper[b-iaksdvbjml] {
    margin-top: -2rem;
    margin-bottom: -2rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    min-height: calc(100vh - 4rem);
    background: radial-gradient(circle at 50% -20%, #1e1b4b 0%, #050510 100%);
    overflow: hidden;
}

@media (min-width: 641px) {
    .about-wrapper[b-iaksdvbjml] {
        margin-left: -2rem;
    }
}

.about-container[b-iaksdvbjml] {
    min-height: calc(100vh - 4rem);
    color: #fff;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    position: relative;
}

/* Background grid effect */
.about-container[b-iaksdvbjml]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    opacity: 0.4;
    animation: grid-shift-b-iaksdvbjml 30s linear infinite;
    transform: perspective(500px) rotateX(20deg);
    transform-origin: top;
}

@keyframes grid-shift-b-iaksdvbjml {
    0% {
        transform: perspective(500px) rotateX(20deg) translateY(0);
    }

    100% {
        transform: perspective(500px) rotateX(20deg) translateY(40px);
    }
}

.hero-section[b-iaksdvbjml],
.features-grid[b-iaksdvbjml],
.cta-section[b-iaksdvbjml] {
    position: relative;
    z-index: 1;
}

.hero-section[b-iaksdvbjml] {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 5rem;
    animation: fade-in-up-b-iaksdvbjml 1s ease-out;
}

.glow-text[b-iaksdvbjml] {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(to right, #60a5fa, #c084fc, #60a5fa);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 40px rgba(96, 165, 250, 0.3);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    animation: gradient-shift-b-iaksdvbjml 5s linear infinite;
}

@keyframes gradient-shift-b-iaksdvbjml {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

.subtitle[b-iaksdvbjml] {
    font-size: 1.5rem;
    color: #9ca3af;
    font-weight: 300;
    letter-spacing: 1px;
}

.features-grid[b-iaksdvbjml] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    width: 100%;
    max-width: 1100px;
    margin-bottom: 5rem;
}

.glass[b-iaksdvbjml] {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275),
        background 0.3s ease,
        box-shadow 0.3s ease,
        border 0.3s ease;
    animation: fade-in-up-b-iaksdvbjml 1s ease-out backwards;
}

.glass:nth-child(1)[b-iaksdvbjml] {
    animation-delay: 0.2s;
}

.glass:nth-child(2)[b-iaksdvbjml] {
    animation-delay: 0.4s;
}

.glass:nth-child(3)[b-iaksdvbjml] {
    animation-delay: 0.6s;
}

.glass:hover[b-iaksdvbjml] {
    transform: translateY(-12px);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(96, 165, 250, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.icon[b-iaksdvbjml] {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.feature-card h3[b-iaksdvbjml] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f3f4f6;
}

.feature-card p[b-iaksdvbjml] {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 1.05rem;
}

.btn-glow[b-iaksdvbjml] {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.6);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fade-in-up-b-iaksdvbjml 1s ease-out 0.8s backwards;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-glow:hover[b-iaksdvbjml] {
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.9);
    transform: scale(1.08) translateY(-5px);
    color: white;
}

@keyframes fade-in-up-b-iaksdvbjml {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Pages/Help.razor.rz.scp.css */
html[b-0doun3gxxq] {
    scroll-behavior: smooth;
}
/* /Pages/Index.razor.rz.scp.css */
/* ═══════════════════════════════════════════════════════════
   MCX Home / Index Page — White Background Theme
   ═══════════════════════════════════════════════════════════ */

.mcx-home[b-fki8dhyj7e] {
    min-height: calc(100vh - 48px);
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

    /* Subtle grid pattern overlay — light grey on white */
    .mcx-home[b-fki8dhyj7e]::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
        background-size: 60px 60px;
        pointer-events: none;
    }

/* ── Hero ──────────────────────────────────────────────── */
.mcx-hero[b-fki8dhyj7e] {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 24px 40px;
    position: relative;
    z-index: 1;
}

/* ── Animated Logo ────────────────────────────────────── */
.mcx-hero-logo[b-fki8dhyj7e] {
    width: 160px;
    height: 184px;
    margin-bottom: 32px;
    animation: logoFloat-b-fki8dhyj7e 4s ease-in-out infinite;
}

.mcx-logo-svg[b-fki8dhyj7e] {
    width: 100%;
    height: 100%;
}

/* Marker entrance — drops in */
.mcx-marker-outline[b-fki8dhyj7e] {
    animation: markerDrop-b-fki8dhyj7e 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

/* Quadrant reveal — each slides in from its corner */
.mcx-quad[b-fki8dhyj7e] {
    animation-duration: 0.6s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mcx-quad-tl[b-fki8dhyj7e] {
    animation-name: slideFromTL-b-fki8dhyj7e;
    animation-delay: 0.5s;
}

.mcx-quad-tr[b-fki8dhyj7e] {
    animation-name: slideFromTR-b-fki8dhyj7e;
    animation-delay: 0.65s;
}

.mcx-quad-bl[b-fki8dhyj7e] {
    animation-name: slideFromBL-b-fki8dhyj7e;
    animation-delay: 0.8s;
}

.mcx-quad-br[b-fki8dhyj7e] {
    animation-name: slideFromBR-b-fki8dhyj7e;
    animation-delay: 0.95s;
}

/* Lens — all layers expand from a tiny dot at the colour junction */
.mcx-lens-ring[b-fki8dhyj7e],
.mcx-lens-dome[b-fki8dhyj7e],
.mcx-lens-edge[b-fki8dhyj7e] {
    transform-origin: 100px 85px;
    animation: lensExpand-b-fki8dhyj7e 0.7s cubic-bezier(0.22, 1, 0.36, 1) 1.2s both;
}

/* Specular pip fades in after dome expands */
.mcx-lens-specular[b-fki8dhyj7e] {
    transform-origin: 100px 85px;
    animation: specularAppear-b-fki8dhyj7e 0.5s ease-out 1.7s both;
}

/* ── Keyframes ────────────────────────────────────────── */
@keyframes markerDrop-b-fki8dhyj7e {
    0% {
        transform: translateY(-80px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideFromTL-b-fki8dhyj7e {
    0% {
        transform: translate(-60px, -60px);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

@keyframes slideFromTR-b-fki8dhyj7e {
    0% {
        transform: translate(60px, -60px);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

@keyframes slideFromBL-b-fki8dhyj7e {
    0% {
        transform: translate(-60px, 60px);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

@keyframes slideFromBR-b-fki8dhyj7e {
    0% {
        transform: translate(60px, 60px);
        opacity: 0;
    }

    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

@keyframes lensExpand-b-fki8dhyj7e {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    80% {
        transform: scale(1.06);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes specularAppear-b-fki8dhyj7e {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.1);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes logoFloat-b-fki8dhyj7e {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ── Title ────────────────────────────────────────────── */
.mcx-hero-title[b-fki8dhyj7e] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 42px;
    font-weight: 300;
    color: #1a1a2e;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    animation: fadeUp-b-fki8dhyj7e 0.6s ease-out 1.0s both;
}

.mcx-title-map[b-fki8dhyj7e] {
    font-weight: 300;
}

.mcx-title-channels[b-fki8dhyj7e] {
    font-weight: 300;
}

.mcx-title-x[b-fki8dhyj7e] {
    font-weight: 700;
    color: #E67E22;
    margin-left: 4px;
    font-size: 48px;
}

.mcx-hero-tagline[b-fki8dhyj7e] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    color: #6b7280;
    font-weight: 300;
    margin-bottom: 36px;
    animation: fadeUp-b-fki8dhyj7e 0.6s ease-out 1.2s both;
}

@keyframes fadeUp-b-fki8dhyj7e {
    0% {
        transform: translateY(16px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ── CTA Buttons ──────────────────────────────────────── */
.mcx-hero-actions[b-fki8dhyj7e] {
    display: flex;
    gap: 16px;
    animation: fadeUp-b-fki8dhyj7e 0.6s ease-out 1.4s both;
}

.mcx-btn-hero[b-fki8dhyj7e] {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.mcx-btn-hero-primary[b-fki8dhyj7e] {
    background: #3498DB;
    color: #fff;
    border: 2px solid #3498DB;
}

    .mcx-btn-hero-primary:hover[b-fki8dhyj7e] {
        background: #2980B9;
        border-color: #2980B9;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 4px 16px rgba(52,152,219,0.3);
    }

.mcx-btn-hero-secondary[b-fki8dhyj7e] {
    background: transparent;
    color: #3498DB;
    border: 2px solid #3498DB;
}

    .mcx-btn-hero-secondary:hover[b-fki8dhyj7e] {
        background: #3498DB;
        color: #fff;
        text-decoration: none;
        transform: translateY(-2px);
    }

/* ── Feature Cards ────────────────────────────────────── */
.mcx-features[b-fki8dhyj7e] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 20px 24px 60px;
    max-width: 1000px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.mcx-feature-card[b-fki8dhyj7e] {
    background: #f8f9fa;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.3s ease;
}

    .mcx-feature-card:hover[b-fki8dhyj7e] {
        background: #ffffff;
        border-color: #3498DB;
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }

.mcx-feature-card-1[b-fki8dhyj7e] {
    animation: fadeUp-b-fki8dhyj7e 0.6s ease-out 1.6s both;
}

.mcx-feature-card-2[b-fki8dhyj7e] {
    animation: fadeUp-b-fki8dhyj7e 0.6s ease-out 1.75s both;
}

.mcx-feature-card-3[b-fki8dhyj7e] {
    animation: fadeUp-b-fki8dhyj7e 0.6s ease-out 1.9s both;
}

.mcx-feature-card-4[b-fki8dhyj7e] {
    animation: fadeUp-b-fki8dhyj7e 0.6s ease-out 2.05s both;
}

.mcx-feature-card-5[b-fki8dhyj7e] {
    animation: fadeUp-b-fki8dhyj7e 0.6s ease-out 2.2s both;
}

.mcx-feature-card-6[b-fki8dhyj7e] {
    animation: fadeUp-b-fki8dhyj7e 0.6s ease-out 2.35s both;
}

.mcx-feature-icon[b-fki8dhyj7e] {
    font-size: 36px;
    margin-bottom: 14px;
}

.mcx-feature-card h3[b-fki8dhyj7e] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.mcx-feature-card p[b-fki8dhyj7e] {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.5;
}

/* ── Alpha Notes Banner ─────────────────────────────────── */
.mcx-alpha-notes[b-fki8dhyj7e] {
    background-color: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: 8px;
    padding: 20px 24px;
    max-width: 950px;
    width: calc(100% - 48px);
    text-align: center;
    margin: 0 auto 40px auto;
    position: relative;
    z-index: 1;
    animation: fadeUp-b-fki8dhyj7e 0.6s ease-out 2.5s both;
}

    .mcx-alpha-notes h4[b-fki8dhyj7e] {
        color: #d97706;
        margin-top: 0;
        margin-bottom: 8px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 18px;
        font-weight: 600;
    }

    .mcx-alpha-notes p[b-fki8dhyj7e] {
        color: #92400e;
        margin: 0;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        font-size: 14px;
        line-height: 1.5;
    }

/* ── Responsive ───────────────────────────────────────── */
@media (max-width: 700px) {
    .mcx-hero-logo[b-fki8dhyj7e] {
        width: 128px;
        height: 148px;
    }

    .mcx-hero-title[b-fki8dhyj7e] {
        font-size: 30px;
    }

    .mcx-title-x[b-fki8dhyj7e] {
        font-size: 36px;
    }

    .mcx-hero-actions[b-fki8dhyj7e] {
        flex-direction: column;
        align-items: center;
    }
}
/* /Pages/MapCategories.razor.rz.scp.css */
/* 1. Hide the MainLayout navigation and headers */
/* Adjust '.sidebar' or '.top-row' if your layout uses different class names */
.sidebar[b-lthf65d125], .top-row[b-lthf65d125], .mcx-main-nav[b-lthf65d125] {
    display: none !important;
}

/* 2. Remove default layout padding and force full height */
.page[b-lthf65d125], main[b-lthf65d125], .content[b-lthf65d125] {
    padding: 0 !important;
    margin: 0 !important;
    height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden !important;
}

/* 3. Safely cover the background map without destroying it */
/* (Using display:none on the map can break Google Maps' internal bounds calculations) */
.mcx-categories-fullscreen[b-lthf65d125] {
    background: #f8f9fa; /* Use your preferred background color here */
}

@keyframes fadeInUp-b-lthf65d125 {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cat-tabs[b-lthf65d125] {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 0;
}

.cat-tab[b-lthf65d125] {
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .cat-tab:hover[b-lthf65d125] {
        color: #333;
    }

    .cat-tab.active[b-lthf65d125] {
        color: dodgerblue;
        border-bottom-color: dodgerblue;
    }

.cat-tab-icon[b-lthf65d125] {
    font-size: 16px;
}

.cat-section[b-lthf65d125] {
    max-width: 800px;
}

.cat-empty[b-lthf65d125] {
    padding: 30px;
    text-align: center;
    color: #aaa;
    background: #fafafa;
    border-radius: 8px;
    border: 1px dashed #ddd;
    margin-bottom: 16px;
}

.cat-card[b-lthf65d125] {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 6px;
    border: 2px solid transparent;
    transition: all 0.15s;
    cursor: grab;
}

    .cat-card:hover[b-lthf65d125] {
        background: #f0f4f8;
        border-color: #e0e8f0;
    }

    .cat-card.drag-over[b-lthf65d125] {
        border-color: dodgerblue;
        background: #e8f0fe;
    }

.cat-card-handle[b-lthf65d125] {
    color: #bbb;
    font-size: 18px;
    cursor: grab;
    user-select: none;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.cat-card-icon[b-lthf65d125] {
    flex-shrink: 0;
    width: 100px; /* Expanded width for dual icons */
    min-height: 40px; /* Allows 40px icons to fit without clipping */
    display: flex;
    align-items: center;
    justify-content: center;
}

.cat-color-dot[b-lthf65d125] {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(0,0,0,0.15);
    display: inline-block;
}

.cat-card-name[b-lthf65d125] {
    flex: 1;
    border: 1px solid transparent;
    background: transparent;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.15s;
}

    .cat-card-name:focus[b-lthf65d125] {
        border-color: #ccc;
        background: white;
        outline: none;
    }

.cat-target-select[b-lthf65d125] {
    flex-shrink: 0;
    width: 140px;
    padding: 4px 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 12px;
    color: #555;
    background-color: white;
}

.cat-color-input[b-lthf65d125] {
    width: 36px;
    height: 30px;
    border: 1px solid #ccc;
    border-radius: 6px;
    padding: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.cat-card-delete[b-lthf65d125] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    padding: 4px;
    opacity: 0.4;
    transition: opacity 0.15s;
    flex-shrink: 0;
}

    .cat-card-delete:hover[b-lthf65d125] {
        opacity: 1;
    }

.cat-shape-swatch[b-lthf65d125] {
    width: 36px;
    height: 24px;
    border-radius: 4px;
    border-width: 3px;
    border-style: solid;
    flex-shrink: 0;
}

.cat-shape-toggle[b-lthf65d125] {
    background: none;
    border: none;
    color: #888;
    font-size: 11px;
    cursor: pointer;
    padding: 2px 12px 8px 52px;
    transition: color 0.15s;
}

    .cat-shape-toggle:hover[b-lthf65d125] {
        color: dodgerblue;
    }

.cat-shape-props[b-lthf65d125] {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 12px 16px;
    margin: -2px 0 8px 42px;
}

.cat-prop-row[b-lthf65d125] {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

    .cat-prop-row label[b-lthf65d125] {
        width: 110px;
        font-size: 12px;
        color: #666;
        flex-shrink: 0;
    }

    .cat-prop-row input[type="color"][b-lthf65d125] {
        width: 36px;
        height: 28px;
        border: 1px solid #ccc;
        border-radius: 4px;
        padding: 2px;
        cursor: pointer;
    }

    .cat-prop-row input[type="range"][b-lthf65d125] {
        flex: 1;
        max-width: 160px;
    }

    .cat-prop-row input[type="number"][b-lthf65d125] {
        width: 60px;
        padding: 4px 6px;
        border: 1px solid #ccc;
        border-radius: 4px;
        font-size: 13px;
    }

.cat-prop-value[b-lthf65d125] {
    font-size: 12px;
    color: #888;
    width: 32px;
}

.cat-actions[b-lthf65d125] {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}

.cat-status[b-lthf65d125] {
    margin-top: 12px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 13px;
    color: #2e7d32;
    background: #e8f5e9;
    max-width: 800px; /* Updated width */
    animation: fadeInUp-b-lthf65d125 0.2s ease-out;
}

    .cat-status.error[b-lthf65d125] {
        color: #c62828;
        background: #ffebee;
    }

.cat-modal-overlay[b-lthf65d125] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInUp-b-lthf65d125 0.15s ease-out;
}

.cat-modal[b-lthf65d125] {
    background: white;
    padding: 24px;
    border-radius: 12px;
    max-width: 420px;
    width: 90%;
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}

/* Vector Marker Previews */
.marker-preview[b-lthf65d125] {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    box-sizing: border-box;
}

.shape-circle[b-lthf65d125] {
    border-radius: 50%;
}

.shape-square[b-lthf65d125] {
    border-radius: 4px;
}

.shape-pin[b-lthf65d125] {
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

    .shape-pin .icon-mask[b-lthf65d125] {
        transform: rotate(45deg);
    }
/* /Pages/MapCategoryAdd.razor.rz.scp.css */
/* Container Layout */
.split-layout[b-g9d0qz0xvr] {
    display: flex;
    position: absolute;
    top: 42px; /* Adjust this if your top nav + subnav height is slightly different */
    bottom: 0;
    left: 0;
    right: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
    overflow: hidden; /* Prevents global scrollbars */
}

/* Left Column (Master/Preview) */
.left-column[b-g9d0qz0xvr] {
    flex: 0 0 350px;
    background: #ffffff;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    z-index: 10;
    border-right: 1px solid #eaeaea;
}

.left-column-body[b-g9d0qz0xvr] {
    flex: 1;
    overflow-y: auto; /* Only this middle section scrolls */
    padding: 24px;
}

/* Action Footer */
.left-actions[b-g9d0qz0xvr] {
    padding: 20px 24px;
    background-color: #ffffff;
    border-top: 1px solid #eaeaea;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.02);
}

/* Form Groups */
.form-group[b-g9d0qz0xvr] {
    margin-bottom: 20px;
}
.form-group label[b-g9d0qz0xvr] {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #5f6368;
    margin-bottom: 6px;
}
.form-control[b-g9d0qz0xvr] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #dadce0;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
    box-sizing: border-box;
    font-family: inherit;
    background: #fff;
}
.form-control:focus[b-g9d0qz0xvr] {
    border-color: dodgerblue;
    outline: none;
    box-shadow: 0 0 0 3px rgba(30, 144, 255, 0.15);
}

/* State Cards */
.state-cards-container[b-g9d0qz0xvr] {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}
.state-card[b-g9d0qz0xvr] {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 16px;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 16px;
}
.state-card:hover[b-g9d0qz0xvr] {
    border-color: #bbdefb;
    background: #f8fafd;
}
.state-card.active[b-g9d0qz0xvr] {
    border-color: dodgerblue;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.15);
    background: #f0f7ff;
}
.state-card-info[b-g9d0qz0xvr] {
    flex-grow: 1;
}
.state-card-title[b-g9d0qz0xvr] {
    font-size: 14px;
    font-weight: 600;
    color: #202124;
    margin-bottom: 4px;
}
.state-card-subtitle[b-g9d0qz0xvr] {
    font-size: 12px;
    color: #5f6368;
}

/* Preview Box (in State Card) */
.preview-mini[b-g9d0qz0xvr] {
    width: 60px;
    height: 60px;
    background: #f1f3f4;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 1px solid #e0e0e0;
}

.marker-preview[b-g9d0qz0xvr] {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    box-sizing: border-box;
    transition: all 0.2s;
}

    /* SVG Masking for precise color control */
    .marker-preview .icon-mask[b-g9d0qz0xvr] {
        width: 60%;
        height: 60%;
        transition: all 0.2s;
    }

.pin-preview[b-g9d0qz0xvr] {
    position: absolute;
    /* Base sizes will be overwritten inline based on ViewModel Width/Height */
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0px 3px 5px rgba(0,0,0,0.25));
    transition: all 0.3s ease;
}

.pin-icon[b-g9d0qz0xvr] {
    width: 60%;
    height: 60%;
    filter: brightness(0) invert(1);
}

/* Abstract Pin Clip paths */
/* Shapes */
.shape-circle[b-g9d0qz0xvr] {
    border-radius: 50%;
}

.shape-square[b-g9d0qz0xvr] {
    border-radius: 4px;
}

.shape-pin[b-g9d0qz0xvr] {
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}

    .shape-pin .icon-mask[b-g9d0qz0xvr] {
        transform: rotate(45deg); /* Keeps the icon upright inside the rotated pin */
    }

.shape-none[b-g9d0qz0xvr] {
    background-color: transparent !important;
    border: none;
    box-shadow: none;
}

    .shape-none .icon-mask[b-g9d0qz0xvr] {
        width: 100%;
        height: 100%;
    }

/* Buttons */
.btn[b-g9d0qz0xvr] {
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-primary[b-g9d0qz0xvr] {
    background: dodgerblue;
    color: white;
}
.btn-primary:hover:not(:disabled)[b-g9d0qz0xvr] {
    background: #187bcd;
}
.btn-outline[b-g9d0qz0xvr] {
    background: transparent;
    border: 1px solid #dadce0;
    color: #3c4043;
}
.btn-outline:hover:not(:disabled)[b-g9d0qz0xvr] {
    background: #f1f3f4;
}
.btn-secondary[b-g9d0qz0xvr] {
    background: #e8f0fe;
    color: #1967d2;
}
.btn-secondary:hover:not(:disabled)[b-g9d0qz0xvr] {
    background: #d2e3fc;
}
.btn-block[b-g9d0qz0xvr] {
    width: 100%;
}
.btn:disabled[b-g9d0qz0xvr] {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Right Column (Detail/Editor) */
.right-column[b-g9d0qz0xvr] {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 32px 40px;
    overflow-y: auto;
    background: #f8f9fa;
}

.right-header[b-g9d0qz0xvr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e0e0e0;
}
.right-header h3[b-g9d0qz0xvr] {
    margin: 0;
    font-size: 20px;
    color: #202124;
    font-weight: 600;
}

/* Tab Bar */
.tab-bar[b-g9d0qz0xvr] {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
    border-bottom: 1px solid #dadce0;
}
.tab-item[b-g9d0qz0xvr] {
    font-size: 15px;
    font-weight: 500;
    color: #5f6368;
    padding: 10px 4px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}
.tab-item:hover[b-g9d0qz0xvr] {
    color: #202124;
}
.tab-item.active[b-g9d0qz0xvr] {
    color: dodgerblue;
    border-bottom-color: dodgerblue;
}

/* Base Settings Grid */
.settings-grid[b-g9d0qz0xvr] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 1px 4px rgba(0,0,0,0.02);
}

/* Multi-Input Fields */
.input-row[b-g9d0qz0xvr] {
    display: flex;
    gap: 12px;
}

.color-picker-wrapper[b-g9d0qz0xvr] {
    display: flex;
    align-items: center;
    gap: 8px;
}
.color-picker-wrapper input[type="color"][b-g9d0qz0xvr] {
    width: 44px;
    height: 44px;
    padding: 2px;
    border: 1px solid #dadce0;
    border-radius: 6px;
    cursor: pointer;
    background: #fff;
    flex-shrink: 0;
}
.color-picker-wrapper input[type="text"][b-g9d0qz0xvr] {
    flex-grow: 1;
    font-family: monospace;
    text-transform: uppercase;
}

/* Radio Group (Shape) */
.radio-group[b-g9d0qz0xvr] {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}
.radio-chip[b-g9d0qz0xvr] {
    padding: 8px 16px;
    border: 1px solid #dadce0;
    border-radius: 20px;
    font-size: 14px;
    color: #5f6368;
    cursor: pointer;
    background: #fff;
    transition: all 0.2s;
    user-select: none;
}
.radio-chip:hover[b-g9d0qz0xvr] {
    background: #f1f3f4;
}
.radio-chip.active[b-g9d0qz0xvr] {
    background: #e8f0fe;
    color: #1967d2;
    border-color: #4285f4;
    font-weight: 500;
}

/* Maki Icon Grid */
.icon-section[b-g9d0qz0xvr] {
    background: #ffffff;
    padding: 24px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}
.icon-section-header[b-g9d0qz0xvr] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.search-box[b-g9d0qz0xvr] {
    padding: 10px 16px;
    border: 1px solid #dadce0;
    border-radius: 20px;
    width: 250px;
    font-size: 14px;
}

.icon-grid[b-g9d0qz0xvr] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 12px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}
.icon-card[b-g9d0qz0xvr] {
    background: white;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.icon-card:hover[b-g9d0qz0xvr] {
    background: #f8f9fa;
    border-color: #d2e3fc;
}
.icon-card.active[b-g9d0qz0xvr] {
    border-color: dodgerblue;
    background: #f0f7ff;
}
.maki-svg[b-g9d0qz0xvr] {
    width: 28px;
    height: 28px;
    opacity: 0.6;
    transition: all 0.2s;
}
.icon-card.active .maki-svg[b-g9d0qz0xvr], .icon-card:hover .maki-svg[b-g9d0qz0xvr] {
    opacity: 1;
}
.icon-card.active .maki-svg[b-g9d0qz0xvr] {
    filter: invert(36%) sepia(85%) saturate(2335%) hue-rotate(205deg) brightness(98%) contrast(93%);
}
.icon-name[b-g9d0qz0xvr] {
    font-size: 11px;
    color: #5f6368;
    text-align: center;
    word-break: break-all;
}

/* Classic Marker Grid */
.classic-gallery[b-g9d0qz0xvr] {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 16px;
}
.classic-card[b-g9d0qz0xvr] {
    background: white;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.classic-card:hover[b-g9d0qz0xvr] {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-color: #d2e3fc;
}
.classic-card.active[b-g9d0qz0xvr] {
    border-color: dodgerblue;
    background: #f0f7ff;
}
.classic-img[b-g9d0qz0xvr] {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
    filter: drop-shadow(0px 2px 3px rgba(0,0,0,0.2));
}
.classic-name[b-g9d0qz0xvr] {
    font-size: 12px;
    font-weight: 500;
    color: #3c4043;
    text-align: center;
}

/* Scrollbar rules */
[b-g9d0qz0xvr]::-webkit-scrollbar {
    width: 8px;
}
[b-g9d0qz0xvr]::-webkit-scrollbar-track {
    background: transparent;
}
[b-g9d0qz0xvr]::-webkit-scrollbar-thumb {
    background-color: #cbd0d5;
    border-radius: 4px;
}
[b-g9d0qz0xvr]::-webkit-scrollbar-thumb:hover {
    background-color: #b0b5ba;
}
/* /Pages/MapImportPreview.razor.rz.scp.css */
.layer-group[b-6jhsi5bxch] {
    margin-bottom: 2px;
}

.layer-heading[b-6jhsi5bxch] {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #f1f3f4;
    border-bottom: 1px solid #e0e0e0;
}

    .layer-heading span[b-6jhsi5bxch] {
        font-size: 13px;
        font-family: Roboto, Arial, sans-serif;
        color: #333;
        font-weight: 600;
    }

.layer-list-container[b-6jhsi5bxch] {
    transition: all 0.2s;
    background: #fff;
}

    .layer-list-container.inactive[b-6jhsi5bxch] {
        display: none;
    }

    .layer-list-container.active[b-6jhsi5bxch] {
        display: block;
    }

.group-check[b-6jhsi5bxch] {
    flex-shrink: 0;
    cursor: pointer;
    margin-right: 6px;
    accent-color: #1a73e8;
}

.mcx-place-item-content[b-6jhsi5bxch] {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

/* /Pages/MapSchema.razor.rz.scp.css */
/* MCX.Client/Pages/MapSchema.razor.css */

/* Mirror the layout-lock from MapCategories.razor.css so that
   visiting this page can never corrupt the map-mode layout on return. */
.page[b-atlo1jnlez], main[b-atlo1jnlez], .content[b-atlo1jnlez] {
    padding: 0 !important;
    margin: 0 !important;
    height: 100vh !important;
    max-height: 100vh !important;
    overflow: hidden !important;
}

/* Schema page scrollable content area */
.mcx-content[b-atlo1jnlez] {
    height: calc(100vh - 41px); /* 41px = subheader height */
    overflow-y: auto;
    padding: 20px 24px;
    box-sizing: border-box;
}

/* Schema table */
.schema-table-wrap[b-atlo1jnlez] {
    overflow-x: auto;
}

.schema-table[b-atlo1jnlez] {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    font-family: Roboto, Arial, sans-serif;
}

    .schema-table th[b-atlo1jnlez] {
        background: #f1f3f4;
        border-bottom: 2px solid #e0e0e0;
        padding: 8px 10px;
        text-align: left;
        font-weight: 600;
        color: #5f6368;
        white-space: nowrap;
    }

    .schema-table td[b-atlo1jnlez] {
        padding: 6px 8px;
        border-bottom: 1px solid #f0f0f0;
        vertical-align: middle;
    }

.schema-row[b-atlo1jnlez] {
    transition: background 0.15s;
}

    .schema-row:hover[b-atlo1jnlez] {
        background: #fafafa;
    }

    .schema-row.drag-over[b-atlo1jnlez] {
        background: #e8f0fe;
        border-top: 2px solid #1a73e8;
    }

@keyframes fadeInUp-b-atlo1jnlez {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Shared/MapSubHeader.razor.rz.scp.css */

.mcx-subheader[b-dhp2e423f0] {
    /* Force the width to the viewport width */
    width: 100vw;
    /* Pull the container out of the restricted center */
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    /* Keep your existing background color/styling here */
    background-color: #e6f2ff; /* (Example based on your image) */
    /* NEW: Prevent the header from shrinking */
    flex-shrink: 0;
    pointer-events: auto !important;
}

/* Make sure the inner content stretches but doesn't touch the exact edge of the monitor */
.mcx-subheader-inner[b-dhp2e423f0] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 100%; /* Overrides any inherited max-width */
    padding: 0 0rem; /* Gives it a nice breathing room on the far left and right */
}


/* Groups the Title and the Map Nav Links together */
.subheader-left[b-dhp2e423f0] {
    display: flex;
    align-items: center;
    gap: 20px; /* Adjust spacing between the title and the links */
}

/* Optional: Handles the spacing of the left-side links */
.subheader-nav[b-dhp2e423f0] {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Groups the right-aligned links together */
.subheader-right[b-dhp2e423f0] {
    display: flex;
    align-items: center;
    gap: 8px; /* Tighter gap for the buttons */
}

/* Charcoal icon button styling */
.mcx-icon-btn[b-dhp2e423f0] {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: #36454F; /* Charcoal Grey */
    color: #ffffff; /* White Icon */
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.15s ease-in-out, color 0.15s ease-in-out;
    /* large font icon */
    font-size: 18px;
}

    /* Hover state changes background to Red */
    .mcx-icon-btn:hover[b-dhp2e423f0] {
        background-color: #dc3545; /* Vibrant Red */
        color: #ffffff;
        text-decoration: none;
    }

.mcx-subheader-title[b-dhp2e423f0] {
    width: 300px; /* Force the exact width you want */
    white-space: nowrap; /* Prevent the text from dropping to a second line */
    overflow: hidden; /* Hide any text that goes beyond 300px */
    text-overflow: ellipsis; /* Add the "..." to the end of the trimmed text */
    /* Optional visual tweaks */
    font-weight: 600;
    flex-shrink: 0; /* Prevents flexbox from accidentally squishing this div smaller than 300px */
}
