body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    color: #002147;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
}

.form-container {
    background-color: #f0f8ff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

label {
    display: block;
    margin-top: 10px;
}

input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

button:hover {
    background-color: #218838;
}

#game-board {
    display: grid;
    grid-template-columns: repeat(5, 60px);
    grid-template-rows: repeat(6, 60px);
    gap: 5px;
    margin: 20px 0;
    width: 80%;
}

#game-board div {
    width: 60px;
    height: 60px;
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.correct {
    background-color: #28a745;
    color: #fff;
}

.present {
    background-color: #ffc107;
    color: #000;
}

.absent {
    background-color: #6c757d;
    color: #fff;
}

#word-input {
    font-size: 24px;
    padding: 10px;
    width: 50%;
}

#submit-word, #new-game {
    display: inline-block;
    margin: 10px;
}

#new-game {
    position: absolute;
    top: 20px;
    right: 20px;
}

#game-history, #edit-profile {
    margin-top: 20px;
    display: block;
    color: #002147;
    text-decoration: none;
    font-size: 14px;
}

#game-history:hover, #edit-profile:hover {
    text-decoration: underline;
}

#letter-status {
    display: none;
}
