/* Classement concours individuel - Style moderne et lisible */

.container {
    max-width: 600px;
    margin: 60px auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px #bbb;
    padding: 40px 30px;
}
h2, h3 {
    text-align: center;
    margin-bottom: 24px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0 12px 0;
    font-size: 1.08em;
}
th, td {
    padding: 12px 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
}
th {
    background: #f5f5f5;
    font-weight: bold;
    color: #333;
}
tr:nth-child(even) td {
    background: #fafafa;
}
tr[style*='background:#ffe082'] td {
    background: #ffe082 !important;
    color: #d2691e !important;
}
p[style*='color:#388e3c'] {
    text-align: center;
    margin-top: 18px;
}
.btn-retour {
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 18px;
    display: inline-block;
}
.btn-retour:hover {
    background: #0056b3;
}
