@media only screen and (max-width: 600px) {
    /* Estilos para pantallas más pequeñas (móviles) */
}

@media only screen and (min-width: 601px) and (max-width: 1024px) {
    /* Estilos para pantallas medianas (tabletas) */
}

@media only screen and (min-width: 1025px) {
    /* Estilos para pantallas grandes (escritorio) */
}

:root {
    --color-dark: rgb(176, 184, 204);
    --color-light: rgb(210, 223, 255);
    --color-button: #3b5aa9;
    --color-button-hover: #1c3576;
    --color-button-active: rgb(0, 0, 0);
    --color-background-container: rgb(255, 255, 255);
}
/* Responsive: Media query para dispositivos móviles */
@media only screen and (max-width: 600px) {
    .container {
        width: 90%;
    }

    nav ul li {
        display: block;
        margin-bottom: 10px;
    }
}
/* Estilo para el fondo rectangular del h1 */
.rectangular-background {
    background-color: var(--color-button); /* Color de fondo del rectángulo */
    padding: 10px 20px; /* Espacio alrededor del texto */
    border: 1px solid #000000; /* Borde del rectángulo */
    display: flex; /* Utiliza flexbox para centrar */
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
}

.header-margin {
    margin-bottom: 20px;
}

.center {
    text-align: center;
}

.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    min-width: 180px;
    width: auto;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%);
    margin-left: -60px;
    opacity: 0;
    transition: opacity 0.3s;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Top line interface.html */
.long-line {
    width: 100%; 
}

/* left aligned title */
.left-justified-title {
    text-align: left;
}

/* seccion contraible para descripción de selección */
.filtro {
    margin-bottom: 10px;
}

.instrucciones {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    padding: 10px;
}

.info-tooltip {
    position: relative;
    display: inline-block;
    margin-left: 10px; /* Ajusta este valor según sea necesario para el espaciado */
  }
  
  .info-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background-color: #ccc;
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .tooltip-text {
    display: none;
    width: 250px;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    margin-left: -125px; /* Ajusta este valor para centrar el mensaje emergente */
  }
  
  .info-tooltip:hover .tooltip-text {
    display: block;
  }
  
  
