body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.game-container {
    text-align: center;
    background-color: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1 {
    color: #1e90ff;
}

button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
}

button:hover {
    background-color: #45a049;
}

input {
    padding: 10px;
    font-size: 16px;
    width: 100px;
    text-align: center;
}

a {
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    color: #1e90ff;
}

a:hover {
    color: #ff6347;
}

/* Buttons for navigation and game actions */
.back-button,
.start-game-button,
.back-to-index-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.back-button:hover,
.start-game-button:hover,
.back-to-index-button:hover {
    background-color: #0056b3;
}

/* Back to landing page button */
.landing-page-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 16px;
    text-decoration: none;
    color: #0066cc;
}

.landing-page-link:hover {
    text-decoration: underline;
}

#gameInfo {
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 10px;
}

th {
    background-color: #f4f4f4;
    color: #333;
}
