/* Общие стили */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

h1 {
    text-align: center;
    margin-top: 50px;
    font-size: 2.5em;
}

h2 {
    text-align: center;
    margin-top: 30px;
    font-size: 1.8em;
}

/* Центрирование и стили таблиц */
.table {
 
    margin: 20px auto;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.table th, .table td {
    text-align: center;
    padding: 15px;
}

.table .gold {
    background-color: #ffd700;
    font-weight: bold;
}

.table .silver {
    background-color: #c0c0c0;
}

.table .bronze {
    background-color: #cd7f32;
}

.emoji {
    font-size: 1.5em;
}

.winner-emoji {
    font-size: 2em;
}

.member-link {
    color: #007bff;
    text-decoration: none;
}

.member-link:hover {
    text-decoration: underline;
}

/* Адаптивность для мобильных */
@media (max-width: 768px) {
    .table {
        width: 90%;
    }

    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }
}

/* Кнопка возврата на главную */
.btn-back {
    margin-bottom: 20px;
}

.table-male th {
    background-color: #cfe2ff;
    color: #084298;
}
.table-female th {
    background-color: #f8d7da;
    color: #842029;
}
.table-male tbody tr:hover {
    background-color: #e0efff;
}
.table-female tbody tr:hover {
    background-color: #ffe2e7;
}


.table-male thead {
    background-color: #cce5ff; /* светло-голубой */
    color: #003366; /* тёмно-синий текст */
}

/* Цвет для команды девочек */
.table-female thead {
    background-color: #ffe0f0; /* светло-розовый */
    color: #660033; /* тёмно-бордовый текст */
}
