


body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #e0f7fa; /* Changed background color */
}

canvas {
    border: 1px solid #000;
    margin-top: 20px;
    background-color: #f0f4c3; /* Updated canvas background color */
}

button {
    margin-top: 20px;
    padding: 8px 16px; /* Reduced button padding */
    font-size: 12px; /* Further reduced button font size */
    background-color: #4CAF50; /* Added button background color */
    color: white; /* Added button text color */
    border: none; /* Removed button border */
    border-radius: 5px; /* Added button border radius */
}

button:hover {
    background-color: #45a049; /* Added hover effect for button */
}

select {
    margin-top: 20px;
    padding: 8px;
    font-size: 12px; /* Further reduced select font size */
}

h2 {
    margin-top: 30px; /* Reduced margin */
    color: #00796b; /* Changed header color */
}

h3 {
    margin-top: 20px; /* Added margin for target section */
    color: #00796b; /* Changed header color */
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    font-size: 14px; /* Further reduced list item font size */
    margin: 4px 0; /* Reduced margin */
}

#endGameMessage {
    margin-top: 20px;
    display: none;
}

#targetsList li {
    color: #000; /* Keep the text color as black for visibility */
}

.target {
    border-radius: 10px; /* Added rounded corners to targets */
}


