.status {
    display: flex;
    flex-direction: row;
    align-items: center;
    row-gap: 9px;
}

.status-icon {
    color: var(--bright-text-color);
    background-color: var(--base-chip-color);
    width: 19px;
    height: 19px;
    min-width: 19px;
    min-height: 19px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    font-size: var(--font-xxsmall);
    margin-right: 9px;
    text-align: center;
}

.status-icon-large {
    width: 24px;
    height: 24px;
    background-color: var(--color-light-gray-3);
    display: flex;
    flex-direction: row;
}

.status-icon-info {
    background-color: var(--color-light-gray-3);
    display: flex;
    flex-direction: row;
    cursor: pointer;
    margin-left: 6px;
}

.status-icon-menu {
    background-color: #000000;
    width: 20px;
    height: 20px;
    color: #fff;
    font-weight: 600;
}

.status-icon-colored_table {
    margin-left: 6px;
}

.is-accepted {
    background-color: var(--color-success);
}

.is-rejected {
    background-color: var(--color-error);
}

.is-partially-accepted {
    background-color: var(--color-warning);
}

.is-not-attempted {
    background-color: #9d9d9d;
}

.is-pending {
    background-color: var(--color-warning);
}

.is-info {
    background-color: var(--link-color);
}


.is-status-rejected {
    color: var(--color-error);
}

.is-status-accepted {
    color: var(--success-text-color);
}

.is-status-partially-accepted {
    color: var(--color-warning);
}

.is-status-untried {
    color: var(--color-light-gray-3);
}



.is-empty {
    background: transparent;
    border: 1px solid #9d9d9d;
    opacity: 51%;
}

.is-dragging-in-progress * {
    pointer-events: none;
}

.is-dragging-unnaffected>* {
    pointer-events: auto;
}


@media screen and (max-width: 720px) {
    .is-mobile_static {
        width: 100vw;
        height: 100vh;
        overflow: hidden;
    }
}

.standings-table {
    table-layout: auto;
}

.standings-table .standings-cell--shrink {
    width: 1%;
}

.standings-table .standings-cell--expand {
    min-width: 15rem;
}

#standings .team_problem_cell,
#standings .total {
    padding-left: 15px;
}
