body {
    font-family: garamond, serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    background-color: #ececec;
    margin: 0;
    padding-bottom: 70px;
    box-sizing: border-box;
    position: relative;
}

.container {
    text-align: center;
    background-color: #dedede;
    /* padding: 20px; */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
    /* margin: 20px 0; */
}

h1 {
    color: #666666;
    font-size: 36pt;
    margin: 0;
    font-weight: bold;
    padding: 20px;
}

#loading-message {
    font-size: 16pt;
    margin: 15px 0;
}

#question {
    font-size: 16pt;
    margin: 15px 0;
}

#answer {
    font-size: 16pt;
    font-weight: bold;
    /* padding-top: 5px; */
}

.buttons {
    position: fixed;
    top: 66.6%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    width: 100%;
}

.navigation-buttons {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    gap: 10px;
}

button {
    padding: 10px 10px;
    font-size: 12pt;
    cursor: pointer;
    border: none;
    border-radius: 25px;
    color: #fff;
    background-color: #666666;
    transition: background-color 0.3s ease;
    width: 175px;
    font-family: inherit;
}

button:hover {
    background-color: #666666;
}

.hidden {
    display: none;
}

/* New style for disabled buttons */
.disabled-btn {
    background-color: #a0a0a0;
    color: #e0e0e0;
}

.disabled-btn:hover {
    background-color: #a0a0a0;
}

.footer-links {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-links a {
    display: block;
    margin-bottom: 15px;
    text-decoration: underline;
    color: #666666;
}

.footer-links a:last-child {
    margin-bottom: 0;
}

.email-link {
    white-space: nowrap;
}