html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
    display: flex;
    flex-direction: column; /* apila mapa arriba y carousel abajo */
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}
div#map-frame-container {
    flex: 1; /* ocupa todo el espacio disponible */
    position: relative;
    top: 0;
    left: 0;
    height: 100%;
}
#map {
    height: 100%;
    width: 100%;
}
div#map-courtain {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    z-index: 1000;
    background-color: rgba(247, 138, 29, 0.5);
}
span.map-courtain-label {
    margin: 0 auto;
    position: relative;
    top: 50%;
    padding: 6px 10px;
    border-radius: 6px;
    background-color: rgba(30, 30, 30, 0.6);
    color: #FFFFFF;
}

/* Banners carousel styles */
.banner {
    max-height: 120px;
    width: auto;
    display: block;
    margin: 0 auto;
    object-fit: contain;
}
/* Si quieres un contenedor fijo */
#my-carousel { 
    flex-shrink: 0; /* nunca se encoge */
    max-height: 120px;
    margin: 0;
    background: linear-gradient(to right, #7bc1ff, #28779d, #1561a4);
    display: flex;
    justify-content: center; /* centra los banners */
    align-items: center;
    box-shadow: inset 20px 0 30px -10px rgba(0,0,0,0.25),
                inset -20px 0 30px -10px rgba(0,0,0,0.25);
}