/* Estilo para el texto principal */
.text {
    font-family: 'Raleway Regular', sans-serif;
    font-size: 16px;
}

/* Estilo para el contenedor del tooltip */
.tooltip {
    position: absolute;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin-left: 5px;
    margin-top: 12px;
}

/* Estilo para el icono de información */
.info-icon {
    font-size: 13px;
    font-family:'Courier New', Courier, monospace;
    /* background-color: #f3f3f3; */
    color: #4c4c4c;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    border: solid 1px #4c4c4c;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 5px;
}

.info-icon:hover{
    color: #efcc03;
    border-color: #efcc03;
}

/* Estilo para el texto del tooltip */
.tooltip .tooltiptext {
    font-family: 'Raleway Regular', sans-serif;
    visibility: hidden;
    width: 250px;
    font-size: 14px;
    line-height: 140%;
    background-color: rgba(255, 255, 255, 0.8); /* Fondo blanco con opacidad */
    backdrop-filter: blur(10px); /* Efecto de desenfoque */
    color: #232321;
    border: solid 1px #ffffff;
    text-align: left;
    border-radius: 5px;
    padding: 10px;
    position: absolute;
    z-index: 1;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(-3px);
    opacity: 0;
    transition: opacity 0.3s;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2); /* Sombra fuera del tooltip */
}


/* Flecha del tooltip 
.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%; // Flecha en la parte inferior del tooltip //
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}*/

/* Mostrar el tooltip al pasar el cursor */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
