body {
    font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
    text-align: center;
    padding: 50px;
}
.wordle-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.letter-box {
    width: 15vw;
    max-width: 60px;
    height: 15vw;
    max-height: 60px;
    font-size: 2rem;
    text-transform: uppercase;
    text-align: center;
    border: 2px solid #ccc;
    border-radius: 5px;
}
#results {
    max-height: 300px;
    overflow-y: auto;
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: none;
}

#wordList {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
}

#wordList li {
    text-align: center;
    font-size: 1.2rem;
}
ul {
    list-style: none;
    padding: 0;
}
li {
    font-size: 1.2rem;
}
.letter-box.green {
    background-color: #6aaa64;
    color: white;
    border-color: #6aaa64;
}
.letter-box.yellow {
    background-color: #c9b458;
    color: white;
    border-color: #c9b458;
}
.letter-box.grey {
    background-color: #787c7e;
    color: white;
    border-color: #787c7e;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

footer a {
    text-decoration: none;
    color: gray;
}
