html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
}

#map {
    height: 100vh;
    width: 100vw;
    z-index: 1;
}

/* Panel lateral */
.side-panel {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 350px;
    height: calc(100vh - 40px);
    z-index: 1000;
    border-radius: 20px !important;
    background: white;
}

.card-header {
    background-color: #002d72 !important;
    border-radius: 20px 20px 0 0 !important;
}

.btn-primary-custom {
    background-color: #e30613 !important;
    border: none;
    color: white;
    transition: 0.3s;
}

.btn-outline-location {
    color: #002d72;
    border: 2px solid #002d72;
    background: transparent;
}

/* Modal de Carga (Spinner) */
#loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 45, 114, 0.85); /* Azul Megatel con transparencia */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Sobre todo */
}

@media (max-width: 576px) {
    .side-panel {
        width: calc(100% - 40px);
        top: auto;
        bottom: 20px;
        height: 400px;
    }
}