/* ===== Global Page Style ===== */
body {
    background: rgb(248, 243, 203);
    font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
    color: #1a1a1a;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* ===== Header ===== */
h1 {
    background: #0e2076;
    color: white;
    padding: 25px 0;
    margin: 0 0 20px 0;
    font-size: 48px;
    letter-spacing: 1px;
    border-bottom: 4px solid #0a1754;
}

p {
    font-size: 30px;}

/* ===== Button Container ===== */
#Buttons {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

#AnswerBox {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* ===== Modern Buttons ===== */
button {
    font-family: inherit;
    font-size: 22px;
    padding: 14px 20px;
    width: 100%;
    border: none;
    border-radius: 10px;
    background: #1a3dd9;
    color: white;
    cursor: pointer;
    transition: 0.25s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

button:hover {
    background: #0f2bb3;
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

button:active {
    transform: translateY(0);
    box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

/* ===== Input Box ===== */
#UserAnswer {
    font-size: 48px;
    width: 465px;
    padding: 15px;
    border-radius: 10px;
    border: 2px solid #1a3dd9;
    outline: none;
    margin-top: 20px;
    text-align: center;
    transition: 0.25s;
    background: white;
}

#UserAnswer:focus {
    border-color: #0f2bb3;
    box-shadow: 0 0 10px rgba(26, 61, 217, 0.4);
}

/* ===== Question Display ===== */
#Question {
    font-size: 80px;
    font-weight: bold;
    margin: 20px auto;
    color: #0e2076;
}

/* ===== Feedback Text ===== */
#Feedback {
    font-size: 32px;
    margin-top: 15px;
    font-weight: bold;
    min-height: 40px;
}

/* ===== Optional Box Style ===== */
#Box1 {
    font-size: 30px;
    height: 50px;
    margin: auto;
}