.table {
    overflow-x: scroll;
    width: 100%;
    white-space: nowrap;
    display:flex;
    flex-direction: column;
}

.table.main-table {
    min-width: 95vw;
}

.table.team-table {
    width: 100%;
    overflow-x: scroll;
}
.table-head.main-table {
    order: -1000000;
}
.table-head.team-table {
    width: 100%;
    overflow-x: hidden;
}

.sticky-header .row.table-head.main-table.b {
    max-width: 100vw;
    overflow-x: hidden;
}

.row {
    display: flex;
    height: 4rem;
    align-items: center;
    width: 100%;
}
.row.b {
    border-bottom: 1px solid var(--line);
    border-top: 1px solid var(--line);
}
.row.selected-row {
    background: var(--highlight)
}
.row-controls {
    display: flex;
    flex-direction: column;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    height: 100%;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
.row.ignoredlist {
    justify-content: center;
    gap: 1rem;
    position: sticky;
    left: 0;
}
.row.divider {
    height: 0;
    border: 1px solid var(--font)
}

.icon {
    width: 3.5rem;
    height: 3.5rem;
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 0;
    aspect-ratio: 1;
    background-color: var(--icon_bg);
    margin: 0 4px 0 0;
}
div.icon {
    min-width: 3.5rem;
    max-width: 3.5rem;
    background-color: transparent;
    border: 1px solid transparent;
}

button.icon-holder {
    border-radius: 0;
    border-bottom: 1px solid var(--line);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.data {
    font-weight: 900;
    font-style: normal;
    color: var(--font);
    width: 120px;
    min-width: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;

    text-align: center;

    padding: 4px;

    text-overflow: ellipsis;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    overflow: hidden;

    user-select: none;
    box-sizing: border-box;

    border-radius: 0;
    border-bottom: 1px solid var(--line);
}
.data.tiny {
    width: 81px;
    min-width: 54px;
}
.data.large {
    width: 210px;
    min-width: 140px;
}
.data.massive {
    width: 300px;
    min-width: 200px;
}
.data.header {
    font-size: .8rem;
    font-weight: 700;
    border: 0;
    border-radius: 8px;
}
.data.highlighted {
    background: var(--highlight);
}
.data.header.highlighted {
    font-weight: 1000;
}
.data.top {
    padding-top: 4px;
    align-items: start;
}
.data.bottom {
    padding-bottom: 4px;
    align-items: end;
}
.data.dragging {
    position: absolute;
}

h1 {
    margin: 0;
    padding: 0;
}

.fg {
    flex-grow: 1;
}
.ar {
    justify-self: end;
}

.star-ignore-holder {
    display: flex;
    flex-direction: column;
}

.edit-columns {
    position: fixed;
    z-index: 10000000;
    padding: 8px;
    border: 2px solid var(--font);
    border-radius: 6px;
    background-color: var(--bg);
    width: 60%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.edit-columns-list {
    display: flex;
    flex-wrap: wrap;
    min-height: 40px;
    border: 1px solid var(--line);
    padding: 4px;
    border-radius: 4px;
    gap: 4px;
}
.edit-column {
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 4px;
    cursor: grab;
    user-select: none;
    background-color: var(--bg);
    height: min-content;
}
.edit-column.dragging {
    cursor: grabbing;
    opacity: 50%;
}
.edit-column-buttons {
    display: flex;
    gap: 4px;
}