/* Grundlayout */
html, body {
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #f8f8f8;
}

/* Basstorlek – lite större på mobil */
body {
    font-size: 18px;
    line-height: 1.5;
}

/* Centrera innehållet och ge luft runt */
main {
    max-width: 700px;
    margin: 0 auto;
    padding: 16px;
}

/* Länken "Tillbaka" och headern får lite luft */
header {
    max-width: 700px;
    margin: 0 auto;
    padding: 12px 16px 0;
}

/* Rubriker */
h1 {
    font-size: 1.6rem;
    margin: 0 0 12px;
}

/* Texten "Fråga 1 / 10" osv */
#game-root .question-meta {
    margin-bottom: 8px;
    font-weight: 600;
}

/* Själva frågetexten */
#game-root .question-text {
    margin-bottom: 16px;
}

/* Svarsknappar – gör dem stora och hela bredden */
#game-root button {
    display: block;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    border-radius: 999px;
    border: 1px solid #ccc;
    background: #e6f0ff;
    cursor: pointer;
}

/* Lite feedback vid tryck */
#game-root button:active {
    transform: scale(0.98);
}

/* På större skärmar kan vi krympa texten lite */
@media (min-width: 768px) {
    body {
        font-size: 16px;
    }
    main, header {
        padding-left: 24px;
        padding-right: 24px;
    }
}
