.issue-view {
    position: relative;
    overflow-y: auto;
    overflow-x: visible;
    scrollbar-gutter: stable;

    > .loading {
        top: 0;
        left: 0;
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0.5;
        z-index: 1000;
        background-color: var(--ds-surface, #ffffff);
    }

    > .navigation-tools {
        z-index: 101; /* >100 so it is rendered on top of the stalker */
        position: absolute;
        top: 0;
        right: 0;
        margin-right: 20px;
        margin-top: 20px;

        .pager-container,
        .collapse-container {
            display: inline-block;
        }

        .collapse {
            margin-left: 5px;
            position: relative;
            top: -4px;
        }
    }

    > .issue-container {
        outline: none;

        .issue-header {
            padding: 0;
            z-index: 2;
            /* zIndex is set by jira-core (stalker.css), we need to "unset" it because we don't have a stalker bar
                             UPDATE: now we're setting z-index value to 2 because after upgrading AUI to v9 dropdowns in the toolbar were semi-transparent */

            .issue-header-content {
                .command-bar {
                    border-top: none;
                }

                .aui-page-header .aui-page-header-actions {
                    width: 13em;
                }
            }
        }
    }

    #issue-header-archived {
        margin: 0 20px;
    }
}
