body {
    background-color: #8cb0ff; /* Slight blue color */
    font-family: Arial, sans-serif;
    text-align: center;
}

#wordle-container {
    margin-top: 50px;
}

#word-display {
    font-size: 2rem;
    margin-bottom: 20px;
}

#guess-input {
    padding: 5px;
    margin-right: 10px;
}

button {
    padding: 5px 10px;
    background-color: #4CAF50;
    border: none;
    color: white;
    cursor: pointer;
}

.square, .correct, .almost, .wrong {
    display: inline-block;
    width: 30px;
    height: 30px;
    border: 1px solid black;
    margin-top: 7px; /* Add margin for spacing */
    margin-right: 5px;
    text-align: center;
    line-height: 18px;
    vertical-align: top; /* Align the squares properly */
    box-sizing: border-box; /* Include padding and border in the square dimensions */
    padding: 5px; /* Add padding to make sure text is centered */
    padding-bottom: 5px; /* Add more padding to the bottom */
}

.correct {
    background-color: rgb(27, 182, 27);
}

.almost {
    background-color: yellow;
}

.wrong {
    background-color: white;
}
