/* ===== HOME / INDEX ===== */

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.container {
    text-align: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 14px;
    max-width: 520px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.status {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 14px;
    background: #FF9800;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 20px;
}

#map-wrapper {
    width: 30%;
    margin-top: 20px;
     margin-bottom: 20px;
}

#map-wrapper h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    text-align: center;
    color: #ddd;
    
}

#map {
    height: 250px;
    border-top: 1px solid #ddd;
}

@media (max-width: 768px) {
    #map {
        height: 200px;
      
    }

    #map-wrapper {
        width: 100%;
        margin-top: 20px;
      
    }

    .leaflet-control-attribution {
        font-size: 5px;
        opacity: 0.4;
    }

    /* ❌ Botón cerrar popup más claro y arriba */
    .leaflet-popup-close-button {
        top: -20px !important;
        right: -20px !important;
        font-size: 18px;
        color: #b10606 !important;
        background: #362828cc;
        border-radius: 50%;
        width: 22px;
        height: 22px;
        line-height: 20px;
        text-align: center;

    }
}

/* 🔍 Controles de zoom Leaflet más pequeños */
.leaflet-control-zoom a {
    width: 26px;
    height: 26px;
    line-height: 26px;
    font-size: 10px;
}

.leaflet-control-zoom {
    box-shadow: none;
}

.leaflet-control-zoom a {
    width: 22px;
    height: 22px;
    line-height: 22px;
    font-size: 12px;
}

.leaflet-control-attribution {
    font-size: 9px;
    opacity: 0.6;
}

/* ❌ Botón cerrar popup más claro y arriba */
.leaflet-popup-close-button {
    top: -25px !important;
    right: -25px !important;
    font-size: 10px;
    color: #ee0808 !important;
    background: #ffffffcc;
    border-radius: 90%;
    width: 1px;
    height: 1px;
    line-height: 1px;
    text-align: center;

}