﻿/* Global Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #333;
    color: white;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.game-container {
    text-align: center;
    background-color: #444;
    border-radius: 10px;
    padding: 20px;
    width: 400px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Stats display */
.stats div {
    margin: 10px 0;
}

/* Buttons */
.game-buttons button {
    background-color: #28a745;
    border: none;
    color: white;
    padding: 10px;
    margin: 10px;
    width: 80%;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.game-buttons button:hover {
    background-color: #218838;
}

#clickButton img {
    width: 60px;
    height: 60px;
}

/* Leaderboard Section */
.leaderboard-section {
    display: none;
    margin-top: 20px;
    padding: 10px;
    background-color: #555;
    border-radius: 5px;
}

.leaderboard-section input {
    padding: 10px;
    width: 80%;
    margin: 10px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.leaderboard-section button {
    background-color: #007bff;
    border: none;
    padding: 10px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}

.leaderboard-section button:hover {
    background-color: #0056b3;
}

.leaderboard-list {
    margin-top: 10px;
    background-color: #333;
    padding: 10px;
    border-radius: 5px;
}

.leaderboard-list div {
    margin-bottom: 10px;
}
