/* ═══════════════════════════════════════════════════
   IGO → SYGIC  ·  Map Page Styles (SPA Mode)
   ═══════════════════════════════════════════════════ */

#map-view {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: #0f172a;
    display: none;
}

/* Restore normal cursor on map view for precise navigation/clicks */
#map-view, #map-view * {
    cursor: auto !important;
}

#map {
    height: 100vh;
    width: 100vw;
    z-index: 1;
}

.back-btn {
    position: absolute;
    top: 20px;
    left: 50px;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.2s ease;
}

.back-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.filter-panel {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    max-height: 80vh;
    overflow-y: auto;
    width: 220px;
}

.filter-title {
    margin-top: 0;
    font-size: 1rem;
    border-bottom: 1px solid #334155;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.filter-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 0.85rem;
    cursor: pointer;
}

.filter-item input {
    margin-right: 10px;
    cursor: pointer;
}

.filter-item img {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}
