html, body {
    font-family: 'Kilroy', Arial, Helvetica, sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
body {
    align-items: center;
    background-color: #f4f4f4;
    overflow: auto; /* Allow scrolling if content exceeds */
}
.container {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 600px;
    margin: auto;
    /* overflow-y: auto; Allows internal scroll */
    flex-grow: 1; /* Allow the container to take up available space */
    /* max-height: 90vh; Prevents the container from going off the page */
}
input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
button {
    width: 100%;
    padding: 10px;
    border: none;
    background: #007BFF;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}
button:hover {
    background: #0056b3;
}
.result {
    margin-top: 20px;
}
.word {
    font-size: 24px;
    font-weight: bold;
}
.phonetics, .meanings, .synonyms, .antonyms {
    margin-top: 10px;
}