/* Map page specific styles */

* {
  -webkit-tap-highlight-color: transparent;
}

/* Map container */
.map-container {
    margin-top: 60px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #f8e71c;
    text-transform: uppercase;
}

#map {
    width: 100%;
    max-width: 1400px;
    height: calc(100vh - 150px);
    border: 3px solid #555;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

/* Leaflet popup customization */
.leaflet-popup-content-wrapper {
    background-color: #666666;
    color: #fff;
    border-radius: 8px;
}

.leaflet-popup-content {
    margin: 10px;
    font-family: "Libre Franklin", sans-serif;
}

.leaflet-popup-content h3 {
    color: #f8e71c;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.leaflet-popup-content a {
    color: #f8e71c;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.leaflet-popup-content a:hover {
    opacity: 0.7;
}

.leaflet-popup-tip {
    background-color: #444;
}

@media (max-width: 768px) {
    h1 {
        font-size: 1.5rem;
    }

    #map {
        height: calc(100vh - 180px);
    }
}
