:root {
    --bg-light: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.05);
    --primary: #0284c7; /* Sky 600 */
    --primary-glow: rgba(2, 132, 199, 0.15);
    --text-main: #0f172a; /* Slate 900 */
    --text-muted: #64748b; /* Slate 500 */
    --radius-lg: 24px;
    --radius-md: 16px;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans', sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow: hidden;
    height: 100vh;
    width: 100vw;
}

/* Copyright Control */
.leaflet-control-copyright {
    font-size: 11px;
    font-style: italic;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.8);
    padding: 4px 10px;
    border-radius: var(--radius-md);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    user-select: none;
    pointer-events: none;
}

#map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #e2e8f0;
}

/* Common UI Elements */
.hidden {
    display: none !important;
}

/* Sidebar */
.sidebar {
    position: absolute;
    top: 24px;
    left: 24px;
    bottom: 24px;
    width: 280px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    z-index: 100;
    display: flex;
    flex-direction: column;
    padding: 24px;
    box-shadow: var(--shadow-soft);
    transform: translateX(-110%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sidebar.open {
    transform: translateX(0);
}

.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.brand-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-main);
}

.close-sidebar-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 20px;
}

.sidebar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    overflow-y: auto;
}

.menu-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.menu-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    margin-bottom: 4px;
    padding-left: 12px;
}

.menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--text-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s;
}

.menu-item:hover {
    background: rgba(0,0,0,0.03);
}

.menu-item.active {
    background: rgba(2, 132, 199, 0.08);
    color: var(--primary);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.0); /* Transparent to allow visibility */
    z-index: 90;
    opacity: 0;
    pointer-events: none; /* Allows clicking through to map */
    transition: opacity 0.3s;
}

.sidebar.open + .sidebar-overlay {
    opacity: 1;
    pointer-events: none; /* Still none to allow interaction with map underneath */
}

/* Top Search Bar & Controls */
.search-container {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.search-bar-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toggle-sidebar-btn {
    width: 48px;
    height: 48px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    color: var(--text-main);
}

.search-box {
    background: white;
    height: 48px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    padding: 0 6px 0 20px;
    width: 360px;
}

.search-icon {
    font-size: 18px;
    color: var(--text-muted);
    margin-right: 12px;
}

#search-input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 15px;
    color: var(--text-main);
}

.search-action {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    font-size: 18px;
    transition: background-color 0.2s, color 0.2s, transform 0.2s;
}

.search-action:hover {
    background-color: #f1f5f9;
    color: var(--text-main);
    transform: scale(1.05);
}

.search-action.primary {
    background: var(--primary);
    color: white;
    margin-left: 4px;
}

.search-action.primary:hover {
    background-color: #0369a1; /* Sky 700 */
    color: white;
}

/* Base Map Button */
.basemap-toggle-btn {
    height: 48px;
    background: white;
    border: none;
    border-radius: 24px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    font-weight: 600;
    color: var(--text-main);
    font-size: 14px;
    transition: transform 0.2s;
}

.basemap-toggle-btn:hover {
    transform: translateY(-1px);
}

.basemap-toggle-btn i {
    font-size: 18px;
    color: var(--primary);
}

/* Filter Chips */
.filter-chips {
    display: flex;
    gap: 8px;
    padding-left: 60px; /* Offset for hamburger */
}

.chip {
    background: white;
    border: none;
    padding: 8px 16px;
    border-radius: 18px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.2s, color 0.2s;
}

.chip.active {
    background: var(--text-main);
    color: white;
}

.chip:hover:not(.active) {
    background: #f1f5f9;
}

/* Base Map Modal */
.basemap-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1050;
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
}

.basemap-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.basemap-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%);
    background: white;
    padding: 24px;
    border-radius: 24px;
    width: 600px;
    max-width: 90%;
    z-index: 1100;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), opacity 0.3s;
    will-change: transform, opacity;
    opacity: 0;
    pointer-events: none;
}

.basemap-modal.active {
    transform: translate(-50%, -50%);
    opacity: 1;
    pointer-events: auto;
}

.basemap-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.basemap-header h3 {
    font-size: 20px;
    margin: 0;
    font-family: 'Outfit', sans-serif;
}

.basemap-header p {
    margin: 4px 0 0;
    color: var(--text-muted);
    font-size: 14px;
}

.close-basemap {
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-main);
}

.basemap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.basemap-option {
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    will-change: transform;
    position: relative;
}

.basemap-option:hover {
    transform: translateY(-2px);
}

.basemap-option.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.basemap-option .preview {
    height: 100px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.basemap-option:hover .preview {
    transform: scale(1.1);
}

.basemap-option span {
    display: block;
    padding: 8px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    background: #f8fafc;
}

/* Top Right Profile Section */
.top-right-profile {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 100;
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: white;
    border-radius: 50%;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: transform 0.2s;
    box-shadow: var(--shadow-soft);
}

.icon-btn:hover {
    background: #f8fafc;
    transform: translateY(-1px);
}

.profile-avatar-btn {
    width: 48px;
    height: 48px;
    border: none;
    background: white;
    padding: 2px;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.profile-avatar-btn img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.profile-avatar-btn:hover {
    transform: scale(1.05);
}

/* Profile Modal (Google Style) */
.profile-modal {
    position: absolute;
    top: 80px;
    right: 24px;
    width: 380px;
    background: #f0f4f8;
    border-radius: 28px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    z-index: 1100;
    padding: 0;
    overflow: hidden;
    transform-origin: top right;
    transition: transform 0.2s cubic-bezier(0.2, 0, 0, 1), opacity 0.2s;
    will-change: transform, opacity;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    opacity: 0;
    pointer-events: none;
}

.profile-modal.active {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.close-profile-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    z-index: 10;
}

.close-profile-modal:hover {
    background: rgba(0, 0, 0, 0.1);
}

.profile-header-section {
    background: white;
    padding: 32px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.user-email {
    font-size: 14px;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 500;
}

.profile-large-avatar {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}

.profile-large-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.camera-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 28px;
    height: 28px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-main);
    cursor: pointer;
}

.user-greeting {
    font-size: 22px;
    font-weight: 400;
    color: var(--text-main);
    margin-bottom: 24px;
}

.manage-account-btn {
    background: transparent;
    border: 1px solid #747775;
    color: var(--primary);
    padding: 8px 24px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}

.manage-account-btn:hover {
    background: rgba(2, 132, 199, 0.04);
    border-color: var(--primary);
}

.account-switcher {
    padding: 8px 16px;
    background: #f0f4f8;
}

.switcher-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    font-size: 13px;
    color: var(--text-main);
    cursor: pointer;
    border-radius: 16px;
    margin-bottom: 4px;
}

.switcher-header:hover {
    background: rgba(0, 0, 0, 0.03);
}

.account-list {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
}

.account-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.2s;
    border-bottom: 1px solid #f1f5f9;
}

.account-item:last-child {
    border-bottom: none;
}

.account-item:hover {
    background: #f8fafc;
}

.account-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.logo-avatar {
    background: #0f172a;
}

.account-info {
    display: flex;
    flex-direction: column;
}

.account-name {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}

.account-email {
    font-size: 12px;
    color: var(--text-muted);
}

.add-account-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 12px;
    background: transparent;
    border: none;
    font-size: 14px;
    color: var(--text-main);
    cursor: pointer;
    border-radius: 16px;
    transition: background 0.2s;
}

.add-account-btn:hover {
    background: rgba(0, 0, 0, 0.03);
}

.profile-footer {
    padding: 16px 24px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: #f0f4f8;
}

.sign-out-btn {
    background: white;
    border: 1px solid #e2e8f0;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
    cursor: pointer;
    transition: background-color 0.2s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.sign-out-btn:hover {
    background: #f8fafc;
}

.policy-links {
    font-size: 12px;
    color: var(--text-muted);
}

.policy-links a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 4px;
}

.policy-links a:hover {
    text-decoration: underline;
}

/* Info Panel */
.info-panel {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 400px;
    background: white;
    padding: 24px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: transform 0.3s cubic-bezier(0.2, 0, 0, 1), opacity 0.3s;
    will-change: transform, opacity;
    z-index: 95;
    opacity: 0;
    pointer-events: none;
}

.info-panel.active {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    cursor: move; /* Indicate draggable */
    user-select: none; /* Prevent text selection while dragging */
}

.panel-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 600;
}

.close-panel {
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 20px;
}

.hero-stat {
    background: #f0f9ff;
    border: 1px solid #e0f2fe;
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    margin-bottom: 20px;
}

.hero-stat .label {
    display: block;
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stat .value {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.detail-item {
    background: #f8fafc;
    padding: 12px;
    border-radius: 12px;
}

.detail-item .label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.detail-item .val {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-main);
}

/* Village Lists Styles */
.detail-section {
    margin-bottom: 16px;
}

.section-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 4px;
}

.village-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 120px;
    overflow-y: auto;
}

.village-item {
    font-size: 13px;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    padding: 4px 8px;
    background: #f8fafc;
    border-radius: 6px;
}

.village-item .dist {
    font-size: 11px;
    color: var(--text-muted);
}

.action-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 12px var(--primary-glow);
}

.action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

/* Bottom Controls */
.bottom-controls {
    position: absolute;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 90;
}

.zoom-controls {
    display: flex;
    flex-direction: column;
    background: white;
    padding: 4px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.zoom-controls button {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: var(--text-main);
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-controls button:hover {
    background: #f1f5f9;
}

.layer-control {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    color: var(--text-main);
    font-size: 20px;
}

/* Marker Pulse Effect */
.marker-pulse {
    position: relative;
}

/* Analysis Sidebar */
.analysis-sidebar {
    position: absolute;
    top: 24px;
    right: 24px;
    bottom: 24px;
    width: 360px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    z-index: 110;
    transform: translateX(120%);
    transition: transform 0.4s cubic-bezier(0.2, 0, 0, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.analysis-sidebar.open {
    transform: translateX(0);
}

.analysis-header {
    padding: 20px 24px;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.analysis-header h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.close-analysis-btn {
    background: rgba(255,255,255,0.2);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.close-analysis-btn:hover {
    background: rgba(255,255,255,0.3);
}

.analysis-content {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    background: #f8fafc;
}

.analysis-card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
    margin-bottom: 20px;
    border: 1px solid #f1f5f9;
}

.analysis-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.analysis-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e0f2fe;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.analysis-title h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

.analysis-title span {
    font-size: 12px;
    color: var(--text-muted);
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.stat-box {
    background: #f8fafc;
    padding: 12px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
}

.stat-box .num {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    font-family: 'Outfit', sans-serif;
}

.stat-box .lbl {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 4px;
}

.analysis-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success { background: #dcfce7; color: #166534; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-danger { background: #fee2e2; color: #991b1b; }

.kecamatan-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 13px;
}

.kecamatan-list-item:last-child {
    border-bottom: none;
}

.analysis-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-muted);
    gap: 12px;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(2.5);
        opacity: 0;
    }
}

@keyframes tooltip-fade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* Distance Tooltip Modern Style */
.distance-tooltip {
    background: var(--glass-bg) !important;
    border: 1px solid var(--glass-border) !important;
    box-shadow: var(--shadow-soft) !important;
    border-radius: 20px !important;
    padding: 6px 14px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    color: var(--text-main) !important;
    backdrop-filter: blur(8px);
    white-space: nowrap;
    animation: tooltip-fade 0.2s ease-out;
    z-index: 1000 !important;
}

/* Remove default Leaflet tooltip arrow if desired for a floating pill look */
.distance-tooltip::before {
    border-top-color: var(--glass-bg) !important;
    display: none; /* Hide arrow for cleaner floating look */
}