.tab {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Metropolis Regular";
    font-size: 22px;
    line-height: 18px;
    letter-spacing: 0.18px;
    background-color: rgba(255, 255, 255, 0.87);
    border-top: 1px solid #0d4962;
    border-bottom: 1px solid #0d4962;
    border-right: 1px solid #0d4962;
    border-left: 1px solid #0d4962;
    width: 218px;
    height: 54px;
    text-align: center;
}

.tab.autoWidth {
    min-width: 250px;
    width: auto;
    padding-inline: 10px;
}

.tab.leaderboardWidth {
    width: 435px;
}

.tab.noRightBorder {
    border-right: none;
}

.tab.noLeftBorder {
    border-left: none;
}

.tab.noSideBorders {
    border-left: none;
    border-right: none;
}

.tab .content {
    color: #0d4962;
}

.tab:nth-child(1) {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}
.tab:nth-last-child(1) {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.tab.selected {
    background-color: #0d4962;
}

.tab .content.selected {
    font-family: "Metropolis Semi Bold";
    color: rgba(255, 255, 255, 0.87);
}

/* DARK MODE */
.dark .tab {
    color: rgba(255, 255, 255, 0.87);
    background-color: #031821;
    border: 1px solid rgba(255, 255, 255, 0.87);
}
.dark .tab.noRightBorder,
.dark .tab.selected.noRightBorder {
    border-right: none;
}
.dark .tab.noLeftBorder,
.dark .tab.selected.noLeftBorder {
    border-left: none;
}
.dark .tab.noSideBorders,
.dark .tab.selected.noSideBorders {
    border-left: none;
    border-right: none;
}
.dark .content {
    color: rgba(255, 255, 255, 0.87);
}
.dark .tab.selected {
    background-color: #0d4962;
    border: 1px solid rgba(255, 255, 255, 0.87);
}
