.quiz-sub-title {
    color: #0561ae;
    font-size: 20px;
    font-style: italic;
    margin: 0;
}
.quiz-screen {
    text-align: center;
    margin: 20px;
    max-width: 800px;
    box-sizing: border-box;
    display: block;
    margin: 0px auto 80px auto;
}
.quiz-cover { max-width: 100%; max-height: 400px; height: auto; margin-bottom: 20px; clear: both; }
.quiz-question {
    margin: 20px 0;
    line-height: 130%;
}
.option {
    display: block;
    margin: 3px 0px;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #ffffff;
    cursor: pointer;
}
.option:hover { background: #f0f0f0; }
.question-img, .feedback-img img, .level-img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    box-shadow: 0 0px 6px rgba(0,0,0,0.3); /* Sombra sutil */
}
button {
    background: #2bb05d;
    color: white;
    border: none;
    cursor: pointer;
    margin: 10px;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
    font-style: italic;
    font-size: 25px;
    border-radius: 25px;
    padding: 10px 30px;
    transition: all 0.1s ease-in-out;
}
button:hover {
    background: #2bb05d;
    transform: scale(1.1);
}
.correct { color: green; }
.incorrect { color: red; }
#level-content { margin: 20px 0; }
#level-content h3 {
    color: #007cba;
    font-size: 35px;
    font-style: italic;
    text-transform: uppercase;
}
.quiz-progress {
    font-size: 18px;
    font-weight: bold;
    background-color: #007cba; /* Azul WP para consistencia */
    color: #ffffff;
    margin: 0;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 2;
    padding: 5px 15px;
}
.quizhome h2{
    font-size: 30px;
    line-height: 110%;
    text-transform: uppercase;
    color: #000000;
    font-weight: 700;
    margin: 0px;
}
.quizhome h2 strong{
    font-weight: 900;
    margin-bottom: 35px;
}
#question-container,
#quiz-feedback{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    position: relative;
}
.contextquiz, #feedback-content{
    box-sizing: border-box;
    padding: 10px 25px;
    text-align: left;
}
.incorrectitle{
    font-size: 30px;
    color: #f03a17;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
}
.correctitle{
    font-size: 30px;
    color: #16c60c;
    font-weight: 800;
    font-family: "Montserrat", sans-serif;
}
.tiptext{
    display: inline-table;
    box-sizing: border-box;
    padding: 10px 20px;
    color: #fff;
    background-color: #0561ae;
    font-size: 18px;
    border-radius: 6px;
}
@media (max-width: 700px) {
    #question-container, #quiz-feedback{
        grid-template-columns: 1fr;
    }
}