/*
 * 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.
*/
/* Dimensions */
/* Font sizes */
/* Line heights */
/*
* 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: inline-flex;
  height: 2rem;
  font-size: 0.875rem;
  font-weight: 400;
  min-width: 2rem;
}
:host .link-button {
  display: inline-flex;
  position: relative;
  width: 100%;
  padding: 0 0.25rem 0 0;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--theme-color-primary);
  cursor: pointer;
  text-decoration: none;
}
:host .link-button .link {
  display: block;
  position: relative;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}
:host .link-button:not(.disabled):not(:disabled) {
  cursor: pointer;
}
:host .link-button:not(.disabled):not(:disabled):hover, :host .link-button:not(.disabled):not(:disabled).hover {
  color: var(--theme-color-dynamic--hover);
}
:host .link-button:not(.disabled):not(:disabled) {
  cursor: pointer;
}
:host .link-button:not(.disabled):not(:disabled):active, :host .link-button:not(.disabled):not(:disabled).active {
  color: var(--theme-color-dynamic--active);
}
:host .link-button.disabled {
  cursor: default;
  color: var(--theme-color-weak-text);
}
:host .link-button a {
  all: unset;
}
:host :focus-visible {
  outline: 1px solid var(--theme-color-focus-bdr);
}