/*
 * SPDX-FileCopyrightText: 2023 Siemens AG
 *
 * SPDX-License-Identifier: MIT
 *
 * This source code is licensed under the MIT license found in the
 * LICENSE file in the root directory of this source tree.
 */
/*
* SPDX-FileCopyrightText: 2024 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/*
* SPDX-FileCopyrightText: 2024 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
/*
* SPDX-FileCopyrightText: 2024 Siemens AG
*
* SPDX-License-Identifier: MIT
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
:host {
  display: block;
}
:host *,
:host *::after,
:host *::before {
  box-sizing: border-box;
}
:host ::-webkit-scrollbar-button {
  display: none;
}
@-moz-document url-prefix() {
  :host * {
    scrollbar-color: var(--theme-scrollbar-thumb--background) var(--theme-scrollbar-track--background);
    scrollbar-width: thin;
  }
}
:host {
  /* width */
}
:host ::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
:host {
  /* Track */
}
:host ::-webkit-scrollbar-track {
  border-radius: 5px;
  background: var(--theme-scrollbar-track--background);
}
:host ::-webkit-scrollbar-track:hover {
  background: var(--theme-scrollbar-track--background--hover);
}
:host {
  /* Handle */
}
:host ::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background: var(--theme-scrollbar-thumb--background);
}
:host {
  /* Handle on hover */
}
:host ::-webkit-scrollbar-thumb:hover {
  background: var(--theme-scrollbar-thumb--background--hover);
}
:host ::-webkit-scrollbar-corner {
  display: none;
}
:host .content {
  padding: 2rem;
  padding-right: 0;
}
:host .content-apps {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  justify-content: space-evenly;
  max-height: 50vh;
  margin-right: 0.25rem;
  gap: 1.5rem;
}
:host .loading {
  display: flex;
  flex-direction: row;
  align-items: center;
}
:host .loading ix-spinner {
  margin-right: 1rem;
}

:host .AppEntry {
  all: unset;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem;
  flex: 1 1 45%;
  cursor: pointer;
  border: 0.0625rem solid transparent;
}
:host .AppEntry.Selected {
  background-color: var(--theme-color-ghost--selected);
  border: var(--theme-dynamic-bdr-1);
}
:host .AppEntry:not(.disabled):not(:disabled).hover, :host .AppEntry:not(.disabled):not(:disabled):hover {
  background-color: var(--theme-ghost--background--hover);
}
:host .AppEntry:not(.disabled):not(:disabled).active, :host .AppEntry:not(.disabled):not(:disabled):active {
  background-color: var(--theme-ghost--background--active);
}
:host .AppEntry:focus-visible {
  border: 1px solid var(--theme-color-focus-bdr);
}
:host .AppName {
  display: flex;
  flex-direction: column;
}
:host .AppName ix-icon {
  margin-left: 1rem;
}
:host .AppIcon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.25rem;
}