/* css/leaderboard.css */

.model-labels-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 1rem;
}
.leaderboard-label {
    padding: 5px 15px;
    border-radius: 15px;
    font-weight: bold;
    color: rgb(81, 79, 79);
}

/* 定义两种主要颜色 */
.open_source { background-color: #3273dc; } /* Blue for Open-Source */
.proprietary { background-color: #ff3860; } /* Red for Proprietary */

/* 表格行背景色 */
#iwr-table tbody tr.open_source {
    background-color: #eff5fb; /* Light Blue */
}
#iwr-table tbody tr.proprietary {
    background-color: #feecf0; /* Light Red */
}

/* 鼠标悬停时的高亮效果 */
#iwr-table tbody tr:hover {
    background-color: #e9e9e9 !important; /* A neutral gray for hover */
}

/* 表头排序指示 */
#iwr-table th.sortable.clickable::after {
    content: ' \25B2\25BC'; /* up/down arrows */
    color: #ccc;
    font-size: 0.8em;
}
#iwr-table th.sortable.clickable.asc::after {
    content: ' \25B2'; /* up arrow */
    color: #333;
}
#iwr-table th.sortable.clickable.desc::after {
    content: ' \25BC'; /* down arrow */
    color: #333;
}
.clickable {
    cursor: pointer;
}
.table-wrapper {
    overflow-x: auto;
}
