.TracksList {
    &-heading {
        align-items: center;
        display: flex;
        font-size: 18px;
        margin-bottom: 16px;
        margin-right: 30px;
        margin-top: 24px;

        .Help {
            display: flex;
        }
    }

    &-row {
        align-items: center;
        border-top: 1px solid var(--gray-200);
        display: flex;

        &--selected {
            background-color: var(--gray-100);
            border: 1px solid var(--gray-300);
            border-radius: 3px;
            font-weight: 500;
        }

        &--selected + & {
            border-top-color: transparent;
        }
    }

    &-header {
        color: var(--gray-500);
        font-weight: 500;
        text-transform: uppercase;
    }

    &-body {
        font-size: 14px;

        .TracksList-row {
            &:last-child {
                border-bottom: 1px solid var(--gray-200);
            }
        }
    }

    &-column {
        padding: 6px 8px;

        &:hover {
            cursor: pointer;
        }

        &:nth-child(1) {
            font-weight: 500;
            width: 10%;
        }

        &:nth-child(2) {
            font-weight: 500;
            width: 10%;
        }

        &:nth-child(3) {
            width: 45%;
        }

        &:nth-child(4) {
            width: 20%;
        }

        &:nth-child(5) {
            text-align: right;
            width: 20%;
        }

        &--hidden {
            display: none;
        }
    }

    &-pagination {
        display: flex;
        justify-content: center;
        margin-top: 24px;
    }
}
