.map-wrapper {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

h1 {
    margin-bottom: 20px;
    font-size: 28px;
}

#map {
    width: 100%;
    height: 80vh;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
    background: #ddd;
}

.leaflet-popup-content {
    font-size: 14px;
    line-height: 1.4;
}

.popup-title {
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 15px;
}

.popup-link {
    display: inline-block;
    margin-top: 8px;
    text-decoration: none;
    color: #8b0000;
    font-weight: bold;
}

.popup-link:hover {
    text-decoration: underline;
}

.leaflet-tooltip {
    background: rgba(30, 30, 30, 0.92);
    border: none;
    border-radius: 6px;
    color: white;
    padding: 6px 10px;
    font-size: 13px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {

    .map-wrapper {
        padding: 10px;
    }

    h1 {
        font-size: 22px;
    }

    #map {
        height: 75vh;
        min-height: 400px;
        border-radius: 0;
    }
}