body {
    margin: 0;
    font-family: Arial, sans-serif;
}

#map {
    width: 100%;
    height: 100vh;
}

/* Responsive */
@media (max-width: 768px) {
    #map {
        height: 100vh;
    }
}

/* HEADER */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: #020617;
    color: white;
    text-align: center;
    padding: 10px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.header h1 {
    margin: 0;
    font-size: 20px;
}

.header p {
    margin: 0;
    font-size: 12px;
    color: #38bdf8;
}

#map {
    width: 100%;
    height: calc(100vh - 60px);
    margin-top: 60px;
}

@media (max-width: 768px) {
    .header h1 {
        font-size: 16px;
    }

    .header p {
        font-size: 10px;
    }

    #map {
        height: calc(100vh - 50px);
        margin-top: 50px;
    }
}

/* BOTÓN MENU */
#menu-btn {
    position: fixed;
    top: 70px;
    left: 10px;
    background: #020617;
    color: white;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    z-index: 1100;
    border-radius: 5px;
}

/* SIDEBAR */
#sidebar {
    position: fixed;
    top: 0;
    left: -350px;
    width: 250px;
    height: 100%;
    background: #020617;
    color: white;
    padding: 20px;
    z-index: 1000;
    transition: 0.3s;
}

#sidebar h2 {
    margin-top: 60px;
}

#sidebar label {
    display: block;
    margin: 15px 0;
    cursor: pointer;
}

/* SIDEBAR ABIERTO */
#sidebar.abierto {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    margin-bottom: 20px;
}

#close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

/* CONTENEDOR DEL POPUP */
.leaflet-popup-content-wrapper {
    background: transparent;
    box-shadow: none;
    border-radius: 10px;
}

.leaflet-popup-content {
    margin: 0;
}

/* TARJETA */
.popup-card {
    background: #020617;
    color: white;
    padding: 15px;
    border-radius: 10px;
    min-width: 180px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

/* TITULO */
.popup-card h3 {
    margin: 0 0 10px 0;
    font-size: 15px;
    border-bottom: 1px solid #38bdf8;
    padding-bottom: 5px;
}

/* FILAS */
.popup-item {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin: 6px 0;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.modal-contenido {
    background: #020617;
    color: white;
    padding: 25px;
    border-radius: 12px;
    width: 400px;
    max-width: 90%;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.modal-contenido h2 {
    margin-top: 0;
    color: #38bdf8;
}

.modal-contenido button {
    margin-top: 15px;
    padding: 10px 15px;
    background: #38bdf8;
    border: none;
    color: black;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
}