/* Existing body styles remain unchanged */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    margin-top: 20px;
    background-color: black;
    color: white;
}

/* Existing #game styles remain unchanged */
#game {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: black;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* Update #status to center the button */
#status {
    font-size: 1.2em;
    margin-bottom: 20px;
    text-align: center; /* Centers inline elements like the button */
}

/* Existing #controls styles remain unchanged */
#controls {
    margin-top: 20px;
}

/* Existing input and button styles remain unchanged */
input[type="number"] {
    padding: 5px;
    font-size: 1em;
}

button {
    padding: 10px 20px;
    font-size: 1em;
    background-color: red;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 5px;
}

button:hover {
    background-color: darkred;
}

/* Remove duplicate #status definition and update table styles */
table {
    border-collapse: collapse;
    margin: 20px auto; /* Centers the table horizontally */
    background-color: lightgray; /* Light gray background */
    color: black; /* Black text */
}

th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: center; /* Centers text in all columns */
}

th {
    background-color: lightgreen; /* Light green background for header row */
}

#topTenContainer {
    margin-top: 20px;
    text-align: center;
}
