body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #5808da;
    color: #333;
}

.game-container {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    width: 90%;
    max-width: 700px;
    text-align: center;
}

h1 {
    color: #007bff;
    margin-bottom: 20px;
}

.status-panel {
    display: flex;
    justify-content: space-around;
    padding: 10px;
    margin-bottom: 20px;
    background-color: #e9ecef;
    border-radius: 5px;
    font-weight: bold;
}

#sentence-container {
    border: 1px solid #ccc;
    padding: 20px;
    min-height: 50px;
    margin-bottom: 20px;
    background-color: #fff;
    text-align: left;
    line-height: 1.6;
    font-size: 1.2em;
}

/* Styling for correct and incorrect characters */
.correct {
    color: #28a745; /* Green */
}

.incorrect {
    color: #dc3545; /* Red */
    background-color: #f8d7da;
    border-radius: 3px;
    padding: 1px 0;
}

#text-input {
    width: 100%;
    height: 100px;
    padding: 15px;
    box-sizing: border-box;
    border: 2px solid #ced4da;
    border-radius: 5px;
    font-size: 1.1em;
    resize: none;
    margin-bottom: 15px;
}

#text-input:focus {
    border-color: #007bff;
    outline: none;
}

#start-button {
    background-color: #28a745;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s;
}

#start-button:hover {
    background-color: #218838;
}

#message {
    margin-top: 15px;
    font-size: 1.2em;
    font-weight: bold;
}