@import "./import.css";
/*---------------------------
convention_order
----------------------------*/
.convention_leagues_list {
    list-style: none;
    width: 100%;
}

.convention_leagues_list > li {
    margin-bottom: 2.5rem;
}

.convention_leagues_list h3 {
    width: 100%;
    border-top: 3px double var(--site-off-white-color);
    border-bottom: 3px double var(--site-off-white-color);
    font-size: 1rem;
    color: var(--site-text-color);
    font-weight: 500;
    letter-spacing: 1px;
    text-align: left;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
}

.convention_leagues_list .league_content {
    padding: 0 0.25rem;
}

.convention_leagues_list .league_header {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.25rem;
}

.convention_leagues_list .league_header h4 {
    font-size: 0.85rem;
    letter-spacing: 0.6px;
    text-align: left;
    color: var(--site-gray-color);
}

.convention_leagues_list .league_header img {
    width: 1.1rem;
    height: 1.1rem;
    object-fit: contain;
    opacity: 0.5;
}

.league_table_block {
    width: 100%;
    overflow-x: scroll;
}

.convention_leagues_list table {
    min-width: 100%;
    font-size: 0.85rem;
    border: 1px solid var(--site-off-white-color);
}

.convention_leagues_list table:first-of-type {
    margin-bottom: 0.5rem;
}

.convention_leagues_list table tr {
    border-top: 1px solid var(--site-off-white-color);
}

.convention_leagues_list table th {
    padding: 0.5rem;
    background-color: var(--site-background-color);
    color: var(--site-gray-color);
    vertical-align: center;
    border: 1px solid var(--site-off-white-color);
    white-space: nowrap;
}

.convention_leagues_list table th:not(.team_name) {
    width: 4rem;
}

.convention_leagues_list table td {
    padding: 0.5rem;
    vertical-align: center;
    border: 1px solid var(--site-off-white-color);
    white-space: nowrap;
}

.score_sheet th.empty {
    background-image: linear-gradient(to right top,
                                        transparent calc(50% - 0.5px),
                                        var(--site-off-white-color) 50%,
                                        var(--site-off-white-color) calc(50% + 0.5px),
                                        transparent calc(50% + 1px))
}

@media screen and (max-width: 640px) {
    .convention_leagues_list h3 {
        font-size: 0.9rem;
    }

    .convention_leagues_list table {
        font-size: 0.7rem;
    }
}