/* Estilos para el Plugin de Test Hellinger */
.hellinger-container {
    font-family: sans-serif;
    line-height: 1.6;
    margin: 20px 0;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(250, 249, 249, 0.1);
    border: 1px solid #ddd;
}

.hellinger-container .header {
    text-align: center;
    border-bottom: 2px solid #0C0C0C;
    padding-bottom: 20px;
    margin-bottom: 30px;
    background-color: #fec53d;
    color: white;
    padding: 20px;
    border-radius: 8px 8px 0 0;
    margin: -30px -30px 30px -30px; /* Extiende el header a los bordes */
}

.hellinger-container h1 {
    margin: 0;
    font-size: 2em;
    color: #0C0C0C !important; /* Forzar color sobre temas */
}

.hellinger-container .intro {
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.1em;
}

.hellinger-container .question {
    background-color: #fec53d;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 5px;
    border-left: 5px solid #0C0C0C;
}

.hellinger-container .question p {
    font-weight: bold;
    margin-top: 0;
}

.hellinger-container label {
    display: block;
    margin-bottom: 10px;
    cursor: pointer;
}

.hellinger-container input[type="radio"] {
    margin-right: 10px;
}

.hellinger-container .submit-btn {
    display: block;
    width: fit-content;
    margin: 20px auto 0;
    padding: 15px;
    background-color: #0C0C0C;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    margin-top: 30px;
    text-decoration: none;
    -webkit-appearance: none;
}

.hellinger-container .submit-btn:hover {
    background-color: #b1889b;
}

#hellingerResults {
    margin-top: 30px;
    padding: 20px;
    border-radius: 5px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    animation: fadeIn 0.5s ease-in-out;
}

#hellingerResults .result-title {
    font-weight: bold;
    font-size: 1.5em;
    color: #D8A3B7;
}

#hellingerResults .result-text {
    font-size: 1.1em;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}