#overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    min-width: 1200px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

/* Ventana seleccion de señales custom */
#overlayPopCustom {
    position: absolute;
    /* top: 50px; */
    /* left: 100px; */
    z-index: 10000;
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
}

#overlayPopCustom label,
#overlayPopCustom input {
    width: 100px;
    height: 20px;
}

#overlayPopCustom label {
    padding: 0;
    padding-right: 20px;
    border: none !important;
}

#overlayPopCustom #nombreNuevaSenial {
    display: inline-block;
    width: 100%;
    font-size: 1.5em;
}


/* Ventana de exportacion o cambio de seccion */
#overlayPopSeccion,
#overlayPopExport {
    position: absolute;
    top: 32px;
    z-index: 10000;
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
}

#overlayPopExport {
    left: 752px;
}

#overlayPopSeccion {
    left: 746px;
}

#overlayPopSeccion button.iconBtn,
#overlayPopExport button.iconBtn {
    padding: 5px;
    width: 60px;
    display: inline-block;
}

#overlayPopSeccion button.corner,
#overlayPopExport button.corner {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}