/* LasseAhm Quiz Plugin – Styles */

/* Hovedboks */
.quiz-box {
    width: 100%;
    max-width: 700px;
    min-height: 400px;
    margin: 0 auto 20px auto;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    overflow: hidden;
}

/* Indhold */
.quiz-inner {
    padding: 30px;
    width: 100%;
    box-sizing: border-box;
}

/* Kategoriknapper */
.quiz-button {
    width: 100%;
    max-width: 550px;
    font-size: clamp(14px, 2vw, 30px);
    height: 40px;
    border-radius: 15px;
    border: 1px solid #999;
    color: #fff;
    background: #156130;
    margin: 10px 0;
    cursor: pointer;
}

.quiz-button-red {
    background-color: #c9342e;
}

.quiz-button-green {
    background-color: #156130;
}

/* Tekster */
.quiz-title {
    font-size: clamp(14px, 3vw, 18pt);
    color: #8b0000;
    margin-bottom: 10px;
}

.quiz-subtitle {
    font-size: clamp(14px, 3vw, 18pt);
    color: #027028;
    margin-bottom: 10px;
}

.quiz-question {
    font-size: clamp(16px, 4vw, 17pt);
    color: #fff;
    margin-bottom: 15px;
}

.quiz-options label {
    display: block;
    font-size: clamp(14px, 3vw, 14pt);
    color: #fff;
    margin-bottom: 8px;
    cursor: pointer;
}

.quiz-result {
    text-align: center;
    font-size: clamp(16px, 5vw, 25pt);
    color: #fff;
    margin-bottom: 20px;
}

/* Resultat */
.quiz-result-number {
    font-size: clamp(60px, 15vw, 100pt);
    color: #fff;
    font-weight: bold;
}

.quiz-result-text {
    font-size: clamp(16px, 4vw, 25pt);
    color: #fff;
    margin-top: 10px;
    text-align: center;
}

.quiz-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.quiz-links a {
    color: #fff;
    font-size: clamp(14px, 4vw, 18pt);
    text-decoration: underline;
}

/* Bemærk: body { overflow-x: hidden; } er fjernet fra pluginnet.
   Tilføj det i dit tema hvis nødvendigt. */
