body {
    font-family: Arial, sans-serif;
    text-align: center;
}

.container {
    margin: 0 auto;
    max-width: 600px;
}

h1 {
    margin-top: 50px;
}

form {
    margin-top: 30px;
}

table {
    margin-top: 30px;
    width: 100%;
    border-collapse: collapse;
}

table th,
table td {
    padding: 8px;
    border: 1px solid #ccc;
}

table th {
    background-color: #f2f2f2;
}

table tr:nth-child(even) {
    background-color: #fff;
}

table tr:nth-child(odd) {
    background-color: #f9f9f9;
}

.btn-start {
    margin-top: 20px;
    padding: 10px 20px;
    border-radius: 20px;
}

.btn-main {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: #ccc;
    color: #000;
    font-size: 16px;
    cursor: pointer;
}

#map-container {
    margin-top: 30px;
}

input[type="text"] {
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-size: 20px;
}

.gold-row td {
    background-color: #FFD700; /* Jaune doré */
    color: white;
    font-size: 20px;
}

.silver-row td {
    background-color: #C0C0C0; /* Argent */
    color: white;
    font-size: 17px;
}

.bronze-row td {
    background-color: #CD7F32; /* Bronze */
    color: white;
    font-size: 14px;
}

#scoreboard-container {
    display: flex;
    justify-content: center;
}

#scoreboard {
    width: 50%;
}

.checkbox-container {
    display: center;
    align-items: center;
}

.checkbox-label {
    margin-left: 8px;
}

.checkbox-input {
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #999;
    border-radius: 4px;
    cursor: pointer;
}

.checkbox-input:checked::before {
    content: "✓";
    color: #999;
    font-weight: bold;
}

.medal-gold {
    width: 80px; /* Définissez la largeur souhaitée */
    height: auto; /* La hauteur sera ajustée proportionnellement */
}

.centered {
    text-align: center;
    vertical-align: middle;
}