/* Maps Specific Styles */
.maps-layout {
    display: flex;
    height: 100vh;
    overflow: hidden;
    background: var(--primary);
}

.maps-sidebar {
    width: 400px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    z-index: 10;
}

.maps-container {
    flex: 1;
    position: relative;
    background: radial-gradient(circle at center, #1e293b 0%, #0f172a 100%);
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.filter-group {
    margin-top: 2rem;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    margin-bottom: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.filter-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-accent);
}

.filter-item.active {
    background: rgba(56, 189, 248, 0.1);
    border-color: var(--primary-accent);
}

.category-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary-accent);
    cursor: pointer;
    transition: var(--transition);
}

.map-node:hover {
    transform: scale(1.5);
    z-index: 100;
}

.node-tooltip {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: black;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.map-node:hover .node-tooltip {
    opacity: 1;
}

.search-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    color: white;
    width: 100%;
    margin-bottom: 1rem;
}

.results-list {
    flex: 1;
    overflow-y: auto;
    margin-top: 1.5rem;
}

.result-card {
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition);
    cursor: pointer;
}

.result-card:hover {
    background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
    .maps-layout {
        flex-direction: column;
    }

    .maps-sidebar {
        width: 100%;
        height: 50vh;
        order: 2;
    }

    .maps-container {
        height: 50vh;
        order: 1;
    }
}
.info-panel-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 350px;
    z-index: 100;
    padding: 0;
    overflow: hidden;
    display: none;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.info-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.info-body {
    padding: 1.5rem;
}

.close-panel {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 101;
}

.maps-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--primary-accent);
    color: white;
    padding: 0.75rem;
    border-radius: 0.75rem;
    text-decoration: none;
    margin-top: 1.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.maps-btn:hover {
    filter: brightness(1.2);
}

