/* Estilo para el ícono de preguntas */
.preguntas-icon {
    cursor: pointer;
    font-size: 20px;
    color: #075E54;
    padding: 10px;
    transition: color 0.3s, transform 0.3s;
}

.preguntas-icon:hover {
    color: #4CAF50;
    transform: scale(1.1);
}

/* Estilos para el modal de preguntas */
#preguntasModal {
    display: none; /* Oculto por defecto */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
}

.modal-content {
    background-color: #ffffff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #ddd;
    width: 80%;
    max-width: 600px; /* Ajustar el tamaño del modal */
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Sombra suave */
}

.close-preguntas {
    color: #888;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close-preguntas:hover,
.close-preguntas:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Ajustes responsivos */
@media (max-width: 600px) {
    .modal-content {
        width: 95%;
        padding: 15px;
    }
}
