.ManageReportsPage {
    display: flex;
    justify-content: space-between;

    &-runs-panel {
        width: 50%;
    }

    &-runs-panel-content {
        background-color: var(--white);
        border-radius: 3px;
        margin-right: 15px;
        min-height: 700px;
        padding: 24px;
    }

    &-explanation {
        color: var(--gray-500);
        font-size: 14px;
        margin-bottom: 24px;
    }

    &-reports-panel {
        background-color: var(--white);
        border-radius: 3px;
        min-height: 700px;
        padding: 24px;
        width: calc(50% - 15px);
    }

    .Refresh {
        fill: var(--gray-500);
        margin-right: 4px;
    }

    .Checkmark {
        fill: var(--green);
        margin-right: 4px;
    }

    &-reports-list {
        margin-top: 32px;

        &-header {
            border-top: 1px solid var(--gray-100);
            color: var(--gray-500);
            display: flex;
            font-weight: 500;
            margin-right: -24px;
            padding-bottom: 10px;
            padding-right: 24px;
            padding-top: 10px;
            text-transform: uppercase;
        }

        &-row {
            align-items: center;
            border-color: transparent;
            border-style: solid;
            border-top-color: var(--gray-100);
            border-width: 1px;
            display: flex;
            font-size: 14px;
            height: 56px;
            margin-right: -24px;
            padding-right: 24px;
            position: relative;

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

            &:last-child:not(&-selected) {
                border-bottom-color: var(--gray-100);
            }

            &-selected {
                background-color: var(--gray-100);
                border: 1px solid var(--gray-300);
                border-radius: 3px 0 0 3px;
                border-right-width: 0;
                font-weight: 500;
                margin-right: -25px;
                padding-right: 26px;

                &:before, &:after {
                    border-color: transparent;
                    border-style: solid;
                    content: '';
                    display: block;
                    height: 0;
                    left: 100%;
                    position: absolute;
                    width: 0;
                }

                &:before {
                    border-left-color: var(--gray-300);
                    border-width: 28px 0 28px 16px;
                    top: -1px;
                }

                &:after {
                    border-left-color: var(--gray-100);
                    border-width: 27px 0 27px 15px;
                    top: 0px;
                }
            }
        }

        &-cell {
            overflow: hidden;
            overflow-wrap: break-word;
            padding: 0 16px;
            text-overflow: ellipsis;

            &:nth-child(1) {
                width: 40%;
            }

            &:nth-child(2) {
                width: 35%;
            }

            &:nth-child(3) {
                text-align: right;
                width: 25%;

                .TableCellLoader-item {
                    margin-left: auto;
                }
            }

            &.no-reports {
                font-style: italic;
                text-align: center;
                width: 100%;
            }

            .Warning {
                fill: var(--red);
                margin-right: 4px;
            }
        }

        &-currency-amount {
            font-weight: normal;
        }

        &-currency-code {
            font-weight: 500;
        }
    }
}
