/* ==========================================
   1. CSS CUSTOM PROPERTIES (THEMING PALETTE)
   ========================================== */

/* DARK MODE (DEFAULT) */
:root,
[data-theme="dark"] {
    /* Backgrounds & Outlines */
    --bg-main: #18191A;
    --svg-floor: rgba(0, 0, 0, 0);
    --svg-wall: #7E7F81;

    /* UI Panels & Buttons (Translucent RGBA for Frosted Glass effect) */
    --ui-bg: rgba(33, 34, 35, 0.82);
    --ui-text-primary: #FFFFFF;
    --ui-text-secondary: #B6B6B8;
    --ui-border: rgba(52, 53, 58, 0.9);
    --ui-separator: #34353A;
    --btn-hover-bg: rgba(42, 43, 45, 0.9);
    --btn-active-bg: rgba(50, 51, 54, 0.95);
    --ui-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);

    /* Booth Status Palette */
    --booth-available-fill: #22c55e;
    --booth-available-stroke: #34353A;
    --booth-booked-fill: #e86f1c;
    --booth-booked-stroke: #34353A;
    --booth-sold-fill: #cc1f1f;
    --booth-sold-stroke: #34353A;

    /* Permanent Label Typography */
    --booth-label-color: #FFFFFF;
}

/* LIGHT MODE */
[data-theme="light"] {
    /* Backgrounds & Outlines */
    --bg-main: #F2F2F2;
    --svg-floor: rgba(0, 0, 0, 0);
    --svg-wall: #212223;

    /* UI Panels & Buttons (Translucent RGBA for Frosted Glass effect) */
    --ui-bg: rgba(224, 224, 224, 0.82);
    --ui-text-primary: #18191A;
    --ui-text-secondary: #212223;
    --ui-border: rgba(52, 53, 58, 0.4);
    --ui-separator: #34353A;
    --btn-hover-bg: rgba(139, 140, 142, 0.6);
    --btn-active-bg: rgba(152, 153, 155, 0.8);
    --ui-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);

    /* Booth Status Palette */
    --booth-available-fill: #16a34a;
    --booth-available-stroke: #34353A;
    --booth-booked-fill: #d96214;
    --booth-booked-stroke: #34353A;
    --booth-sold-fill: #cc1f1f;
    --booth-sold-stroke: #34353A;

    /* Permanent Label Typography */
    --booth-label-color: #FFFFFF;
}

/* ==========================================
   2. GLOBAL & LAYOUT STYLES (MOBILE SHIFT FIX)
   ========================================== */
* {
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    inset: 0;
    font-family: 'Barlow Condensed', sans-serif;
    color: var(--ui-text-primary);
    background-color: var(--bg-main);
    transition: background-color 0.25s ease, color 0.25s ease;
    overflow: hidden;
}

#map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0) !important;
    fill: transparent !important;
    transition: background-color 0.25s ease;
}

/* Feathered Edge Fading for Underlay Map Layer */
#map .leaflet-bgDesignPane-pane {
    -webkit-mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0) 98%);
    mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 1) 65%, rgba(0, 0, 0, 0) 98%);
}

/* Edge Vignette Overlay */
.map-vignette {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 900; /* Just below UI overlays (1000) */
    box-shadow: inset 0 0 140px rgba(0, 0, 0, 0.65);
    transition: box-shadow 0.25s ease;
}

[data-theme="light"] .map-vignette {
    box-shadow: inset 0 0 140px rgba(0, 0, 0, 0.25);
}

/* ==========================================
   3. FLOATING UI COMPONENTS BASE (FROSTED GLASS)
   ========================================== */
.ui-layer {
    position: absolute;
    z-index: 1000;
    background: var(--ui-bg);
    border: 1px solid var(--ui-border);
    border-radius: 12px;
    box-shadow: var(--ui-shadow);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background-color 0.25s ease, border-color 0.25s ease, width 0.25s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1), right 0.28s cubic-bezier(0.4, 0, 0.2, 1), bottom 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   4. SIDEBAR NAVIGATION MENU (TOP LEFT)
   ========================================== */
.sidebar {
    top: 24px;
    left: 24px;
    bottom: 24px;
    width: 280px;
    display: flex;
    flex-direction: column;
    padding: 14px 12px;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Desktop Collapsed Sidebar: Shrinks to icon-only vertical strip */
.sidebar.collapsed {
    width: 68px;
}

/* Hide text labels, subtitles, and headers on Desktop Collapsed */
.sidebar.collapsed .drawer-subtitle,
.sidebar.collapsed .sidebar-header-text,
.sidebar.collapsed .logo-container,
.sidebar.collapsed .nav-btn-text,
.sidebar.collapsed .footer-arrow {
    display: none;
}

/* Center icons inside the 68px width on Desktop Collapsed */
.sidebar.collapsed .sidebar-top-row {
    justify-content: center;
    margin-bottom: 10px;
}

.sidebar.collapsed .nav-btn,
.sidebar.collapsed .footer-link {
    justify-content: center;
    padding: 0;
}

.sidebar-top-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    min-height: 44px;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-grow: 1;
    padding-right: 8px;
}

.logo-svg {
    width: 100%;
    max-width: 180px;
}

[data-theme="dark"] .logo-light {
    display: none;
}
[data-theme="dark"] .logo-dark {
    display: block;
}
[data-theme="light"] .logo-dark {
    display: none;
}
[data-theme="light"] .logo-light {
    display: block;
}

.sidebar-toggle-btn {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--ui-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.1s ease;
    flex-shrink: 0;
}

.sidebar-toggle-btn i {
    font-size: 24px;
}

.sidebar-toggle-btn:hover {
    background-color: var(--btn-hover-bg);
}

.sidebar-toggle-btn:active {
    background-color: var(--btn-active-bg);
    transform: scale(0.95);
}

.sidebar-header-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 4px;
    margin-bottom: 4px;
}

.venue-location {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--ui-text-primary);
    letter-spacing: 0.3px;
}

.live-status {
    margin: 0;
    font-size: 11px;
    font-weight: 700;
    color: var(--booth-sold-fill, #CC1F1F);
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

/* Separators */
.sidebar-separator {
    width: 100%;
    height: 1px;
    background-color: var(--ui-separator);
    margin: 10px 0;
    flex-shrink: 0;
    transition: background-color 0.25s ease;
}

/* Quick Navigation Section */
.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin: 6px 0;
    flex-grow: 1;
}

.nav-btn {
    width: 100%;
    height: 44px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 10px;
    background: transparent;
    border: none;
    border-radius: 8px;
    color: var(--ui-text-primary);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.4px;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.1s ease;
    user-select: none;
    text-align: left;
}

.nav-btn:hover {
    background-color: var(--btn-hover-bg);
}

.nav-btn:active {
    background-color: var(--btn-active-bg);
    transform: scale(0.97);
}

.nav-icon {
    font-size: 22px;
    width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.text-icon {
    font-weight: 700;
    font-size: 20px;
}

.nav-btn-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.2s ease;
}

/* Sidebar Footer */
.sidebar-footer {
    margin-top: auto;
    padding-top: 4px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 10px;
    height: 44px;
    padding: 0 10px;
    border-radius: 8px;
    color: var(--ui-text-secondary);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.footer-link:hover {
    background-color: var(--btn-hover-bg);
    color: var(--ui-text-primary);
}

.footer-arrow {
    margin-left: auto;
    font-size: 16px;
}

/* ==========================================
   5. BOOTH & POI INSPECTION DRAWER (RIGHT)
   ========================================== */
.booth-drawer {
    position: fixed;
    top: 24px;
    right: 24px;
    bottom: 24px;
    width: 320px;
    display: flex;
    flex-direction: column;
    padding: 18px 16px;
    transform: translateX(120%);
    pointer-events: none;
    opacity: 0;
}

.booth-drawer.open {
    transform: translateX(0);
    pointer-events: auto;
    opacity: 1;
}

.drawer-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.drawer-title-group {
    display: flex;
    flex-direction: column;
}

.drawer-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--ui-text-secondary);
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.drawer-title {
    margin: 2px 0 0 0;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
    color: var(--ui-text-primary);
}

.drawer-close-btn {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    border: none;
    background: transparent;
    color: var(--ui-text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.1s ease;
    flex-shrink: 0;
}

.drawer-close-btn i {
    font-size: 20px;
}

.drawer-close-btn:hover {
    background-color: var(--btn-hover-bg);
}

.drawer-close-btn:active {
    background-color: var(--btn-active-bg);
    transform: scale(0.92);
}

.drawer-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 8px 0;
    flex-grow: 1;
    overflow-y: auto;
}

.detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

[data-theme="dark"] .detail-row {
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.detail-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--ui-text-secondary);
}

.detail-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--ui-text-primary);
}

/* Status Badges */
.status-badge {
    font-size: 15px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #FFFFFF;
}

.status-badge.available {
    background-color: var(--booth-available-fill);
}

.status-badge.booked {
    background-color: var(--booth-booked-fill);
}

.status-badge.sold {
    background-color: var(--booth-sold-fill);
}

/* Drawer Footer Booking CTA */
.drawer-footer {
    margin-top: auto;
    padding-top: 10px;
}

.booking-cta-btn {
    width: 100%;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--booth-sold-fill, #CC1F1F);
    color: #FFFFFF;
    border: none;
    border-radius: 8px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(204, 31, 31, 0.35);
    transition: filter 0.15s ease, transform 0.1s ease;
}

.booking-cta-btn i {
    font-size: 22px;
}

.booking-cta-btn:hover {
    filter: brightness(1.1);
}

.booking-cta-btn:active {
    transform: scale(0.97);
}

/* ==========================================
   6. RICH POI DRAWER TYPOGRAPHY & LAYOUTS
   ========================================== */
.poi-fact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 600;
    color: var(--ui-text-primary);
    line-height: 1.35;
    padding: 2px 0;
}

.poi-fact-row i {
    font-size: 22px;
    color: var(--ui-text-secondary);
    flex-shrink: 0;
}

.poi-fact-row i.expo-red {
    color: var(--booth-sold-fill, #CC1F1F);
}

.poi-fact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    font-weight: 700;
    color: var(--booth-sold-fill, #CC1F1F);
    text-decoration: none;
    padding: 4px 0;
    transition: filter 0.15s ease;
}

.poi-fact-link:hover {
    filter: brightness(1.2);
}

.poi-fact-link i {
    font-size: 22px;
}

.poi-body-text {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    color: var(--ui-text-primary);
    margin: 4px 0 10px 0;
}

.poi-logo-wrapper {
    margin-bottom: 8px;
    max-width: 180px;
}

.poi-tba-box {
    padding: 24px 16px;
    text-align: center;
    border: 1px dashed var(--ui-border);
    border-radius: 8px;
    color: var(--ui-text-secondary);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ==========================================
   7. INTERACTIVE HYBRID LEGEND SUBMENU
   ========================================== */
.legend-menu {
    bottom: 24px;
    right: 80px;
    width: 180px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    transform: translateY(20px);
    opacity: 0;
    pointer-events: none;
}

.legend-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.legend-menu.drawer-open {
    right: 416px;
}

.legend-header {
    margin-bottom: 4px;
    padding: 0 4px;
}

.legend-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    color: var(--ui-text-secondary);
    text-transform: uppercase;
}

.legend-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.legend-filter-btn {
    width: 100%;
    height: 38px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--ui-text-primary);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
    user-select: none;
}

.legend-filter-btn:hover {
    background-color: var(--btn-hover-bg);
}

.legend-filter-btn:active {
    transform: scale(0.96);
}

.legend-filter-btn.active-filter {
    background-color: var(--btn-active-bg);
    border-color: var(--ui-text-primary);
}

.legend-swatch {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    flex-shrink: 0;
}

.legend-swatch.available {
    background-color: var(--booth-available-fill);
}

.legend-swatch.booked {
    background-color: var(--booth-booked-fill);
}

.legend-swatch.sold {
    background-color: var(--booth-sold-fill);
}

.legend-reset-btn {
    width: 100%;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    border: 1px solid var(--ui-border);
    border-radius: 8px;
    color: var(--ui-text-secondary);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.legend-reset-btn:hover {
    background-color: var(--btn-hover-bg);
    color: var(--ui-text-primary);
}

.legend-reset-btn:active {
    background-color: var(--btn-active-bg);
}

/* ==========================================
   8. FLOATING ACTION CONTROLS (BOTTOM RIGHT)
   ========================================== */
.floating-controls {
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 0;
    width: 44px;
}

.floating-controls.drawer-open {
    right: 360px;
}

.control-btn {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: var(--ui-text-primary);
    cursor: pointer;
    transition: background-color 0.15s ease, transform 0.1s ease, color 0.25s ease;
    user-select: none;
    padding: 0;
}

.control-btn i {
    font-size: 22px;
    pointer-events: none;
}

.control-btn:hover {
    background-color: var(--btn-hover-bg);
}

.control-btn:active {
    background-color: var(--btn-active-bg);
    transform: scale(0.94);
}

.control-btn.active {
    color: var(--booth-sold-fill, #CC1F1F);
}

.control-separator {
    width: 100%;
    height: 1px;
    background-color: var(--ui-separator);
    margin: 0;
    transition: background-color 0.25s ease;
}

/* ==========================================
   9. COPYRIGHT NOTICE (LOWER LEFT)
   ========================================== */
.copyright-notice {
    position: fixed;
    bottom: 10px;
    left: 24px;
    z-index: 1000;
    pointer-events: none;
    font-size: 12px;
    font-weight: 600;
    color: var(--ui-text-secondary);
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.45);
}

.expo-link {
    color: var(--booth-sold-fill, #CC1F1F);
    font-weight: 700;
    text-decoration: none;
    pointer-events: auto;
    transition: filter 0.15s ease;
}

.expo-link:hover {
    filter: brightness(1.2);
    text-decoration: underline;
}

/* ==========================================
   10. DEVTOOLS CALIBRATION CROSSHAIR & HUD
   ========================================== */
.dev-crosshair {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1500;
}

.crosshair-h {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(204, 31, 31, 0.7);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
    transform: translateY(-50%);
}

.crosshair-v {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: rgba(204, 31, 31, 0.7);
    border-right: 1px dashed rgba(255, 255, 255, 0.5);
    transform: translateX(-50%);
}

.dev-hud {
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 18px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-color: var(--booth-sold-fill, #CC1F1F);
    color: #FFFFFF;
    background-color: rgba(24, 25, 26, 0.92);
    z-index: 2000;
    pointer-events: none;
}

.dev-hud strong {
    color: var(--booth-available-fill, #22c55e);
    font-weight: 700;
}

.hud-sep {
    opacity: 0.4;
}

/* ==========================================
   11. LEAFLET CUSTOMIZATIONS & TYPOGRAPHY
   ========================================== */
.booth-label {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: var(--booth-label-color) !important;
    font-weight: 700;
    transition: color 0.25s ease;
    pointer-events: none;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
}

/* ==========================================
   12. RESPONSIVE MOBILE BREAKPOINTS (<= 640px)
   ========================================== */
@media (max-width: 640px) {
    /* Keep Top-Left Single Button Collapsed Menu with exact 48px square bounds */
    .sidebar.collapsed {
        top: 16px;
        left: 16px;
        right: auto;
        bottom: auto;
        width: 48px !important;
        height: 48px !important;
        min-height: 48px !important;
        padding: 0 !important;
        overflow: hidden !important;
        justify-content: center;
        align-items: center;
    }

    .sidebar.collapsed .sidebar-top-row {
        margin: 0;
        width: 48px;
        min-height: 48px;
        justify-content: center;
    }

    .sidebar.collapsed .sidebar-toggle-btn {
        width: 48px;
        height: 48px;
    }

    /* Hide all child content except the toggle button row ONLY on mobile collapsed */
    .sidebar.collapsed .sidebar-header-text,
    .sidebar.collapsed .sidebar-separator,
    .sidebar.collapsed .sidebar-nav,
    .sidebar.collapsed .sidebar-footer {
        display: none !important;
    }

    /* Expanded mobile menu drops down from top-left */
    .sidebar:not(.collapsed) {
        top: 16px;
        left: 16px;
        right: auto;
        bottom: auto;
        width: 250px;
        max-height: calc(100dvh - 32px);
    }

    .booth-drawer {
        top: auto;
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        max-height: 50vh;
        transform: translateY(120%);
    }

    .booth-drawer.open {
        transform: translateY(0);
    }

    .floating-controls {
        bottom: 16px;
        right: 16px;
    }

    .floating-controls.drawer-open {
        right: 16px;
        bottom: 370px;
    }

    .legend-menu {
        bottom: 270px;
        right: 16px;
    }

    .legend-menu.drawer-open {
        bottom: 620px;
        right: 16px;
    }

    .copyright-notice {
        bottom: 8px;
        left: 12px;
        font-size: 10px;
    }
}

/* ==========================================
   13. POINT OF INTEREST (POI) MAP MARKERS
   ========================================== */
.poi-marker-container {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.poi-square-badge {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 22px;
    border: 2px solid rgba(255, 255, 255, 0.85);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.5);
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.2s ease, filter 0.2s ease;
    user-select: none;
}

.poi-square-badge:hover {
    transform: scale(1.22);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.7);
    filter: brightness(1.1);
}

.poi-square-badge i {
    pointer-events: none;
    line-height: 1;
}

.poi-text-badge {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 0.5px;
    line-height: 1;
    pointer-events: none;
}

/* POI Tooltip Styling */
.poi-tooltip {
    background-color: var(--ui-bg) !important;
    color: var(--ui-text-primary) !important;
    border: 1px solid var(--ui-border) !important;
    border-radius: 6px !important;
    font-family: 'Barlow Condensed', sans-serif !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    padding: 4px 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.poi-tooltip::before {
    display: none !important;
}
