body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

#leaderboard-container {
    max-width: 600px;
    margin: 20px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    color: #333;
}

#leaderboard {
    margin-top: 20px;
}

#leaderboard div {
    background-color: #f9f9f9;
    padding: 10px;
    margin-bottom: 5px;
    border-radius: 5px;
}

#leaderboard div:nth-child(even) {
    background-color: #e9e9e9;
}

#leaderboard div:nth-child(1) {
    background-color: #ffd700; /* Highlight the top score */
    font-weight: bold;
}

#top-left-buttons {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    align-items: center;
    border-radius: 8px; /* Rounded corners for a softer look */
}

#top-left-buttons button {
    margin-right: 10px;
    padding: 5px 10px;
    font-size: 16px;
    background-color: lightgray;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

