/* stylelint-disable-next-line selector-id-pattern */
#AppSwitcherPopover {
    border: none;
    box-shadow: 0 1px 5px rgb(28 28 28 / 45%);
    max-width: unset;

    .arrow {
        display: none;
    }

    .popover-header {
        background: none;
        border: none;
    }

    .AppGrid {
        padding: 0;
        margin: 10px;
        grid-gap: 10px;
        display: grid;
        width: 320px;
        grid-template-columns: 1fr 1fr 1fr;
        max-width: unset;

        .LoadingIndicator {
            width: 100%;
            height: 50px;
        }

        .AppGridButton {
            align-items: center;
            border-radius: 4px;
            color: var(--gray-900);
            display: flex;
            flex-direction: column;
            height: 100px;
            padding: 16px 10px 0;
            text-align: center;
            text-decoration: none;
            width: 100px;

            &-text {
                font-size: 14px;
                line-height: 16px;
                margin: auto 0;
            }

            &:hover {
                box-shadow: 0 3px 3px 0 var(--gray-300);
            }
        }
    }
}
