body { font-family: Arial, sans-serif; background-color: #f0f4f8; margin: 0; padding: 0; display: flex; 
    justify-content: center; align-items: center; height: 100vh;
}
.container { width: 90%; max-width: 600px; background-color: #ffffff; padding: 20px; border-radius: 8px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); text-align: center;
}
h1 { color: #333; margin-bottom: 20px;
}
button { background-color: #007bff; color: white; border: none; padding: 10px 20px; font-size: 16px; border-radius: 
    5px; cursor: pointer; transition: background-color 0.3s;
}
button:hover { background-color: #0056b3;
}
#lobbyIdDisplay {
    font-weight: bold; color: #007bff; margin-bottom: 20px;
}
#playersList {
    list-style-type: none; padding: 0;
}
#playersList li {
    background-color: #e9ecef; margin: 5px 0; padding: 10px; border-radius: 4px;
}
#results {
    background-color: #e9ecef; padding: 20px; border-radius: 8px; margin-top: 20px;
}
#results h2 {
    color: #333; margin-bottom: 10px;
}
#roundResults, #leaderboard {
    text-align: left;
}
#roundResults p, #leaderboard li {
    margin: 5px 0;
}
