.filter-container {
    display: flex;
    justify-content: flex-end;
    margin-right: 5%;
    margin-top: 20px;
}

#championnat-select {
    display: none;
    margin-right: 5%;
    padding: 6px 10px;
}

#championnat-name {
    margin-left: 5%;
    font-size: 20px;
    font-weight: 600;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

.champ-name {
    font-size: 20px;
    font-weight: bold;
    
}

.search-container {
    position: relative;
    width: 280px;
}

/* Bouton reset */
#clear-search {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: none;
}

/* Liste déroulante résultats */
.results-list {
    position: absolute;
    width: 100%;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0;
    margin-top: 3px;
    list-style: none;
    max-height: 250px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.results-list li {
    padding: 8px 10px;
    cursor: pointer;
}

[data-bs-theme="dark"] .results-list li {
    color: black;
}

.results-list li:hover {
    background: #f0f0f0;
}

/*tbody, td, tfoot, th, thead, tr {
    border-color: inherit;
    border-style: solid;
    border-width: 0;
}*/

.table{
    --bs-table-bg: transparent;
}

[data-bs-theme="dark"] .table{
    --bs-table-bg: #222;
}

tr:nth-child(even) {
    background-color: #F5E0D8;
}

[data-bs-theme="dark"] tr:nth-child(even) {
    --bs-table-bg: #25140a;
}

#standings-container{
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

[data-bs-theme="dark"] #standings-container{
    background: #222;
    color: white;
}

@media (max-width: 800px) {
    .top-bar{
        display: block;
        justify-items: center;
    }

}