/* Grundfestlegungen für den htmloutput allgemein */
body, td, div.panel {
  font-family: var(--bs-font-sans-serif);
  font-size: 10pt;
}

p, div {
  border-left-width: 0px;
  border-right-width: 0px;
  border-top-width: 0px;
  border-bottom-width: 0px;
}

a:active, a:focus {
  outline-style: none;
  -moz-outline-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0px;
  border-width: 0px;
  border-color: transparent;
}

tr {
  border-width: 0px;
  border-color: transparent;
}

td {
  vertical-align: top;
  padding: 0px;
  box-sizing: border-box;
  border-width: 0px;
}

p, div, h1, h2, h3, h4, h5, h6, h7, h8, h9, table {
  padding: 0px;
  margin: 0px;
  text-indent: 0px;
}

.Kapitelverweis span:before, .Blockverweis span:before {
  content: attr(content);
  opacity: .5;
}
/* FEHLER */
.ERROR {
  position: relative;
  display: inline-block;
  border: 1px solid white;
  width: 50px;
  height: 10px;
  max-width: 50px;
  max-height: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: firebrick !important;
  color: whitesmoke !important;
  font-size: x-small !important;
}

  .ERROR:hover {
    text-overflow: unset;
    width: auto;
    height: auto;
    max-width: 250px;
    max-height: 250px;
  }

.TWO-COLUMNS {
  column-count: 2;
}

.BREAK-LONG-WORDS {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-word;
}

/* FESTLEGUNGEN FÜR FUSSNOTEN */
/*
  fncontent ist unsichtbar, wird bei hover abs. positioniert (wie Tooltip) eingeblendet
  <span class="Fussnote"> * <span class="fncontent"> TEXT </span></span>
*/
span.Fussnote span.fnmarker {
  color: var(--Fussnote-Star-Textcolor);
}

span.Fussnote:hover span.fncontent {
  display: inline-block !important;
  visibility: visible !important;
  position: absolute;
  /* wenn FN ganz rechts, trotzdem korrekt anzeigen */
  margin-left: -1.4cm;
  margin-top: -0.8cm;
  /**************************************************/
  border: 1px solid var(--Fussnote-ToolTip-Bordercolor);
  background: var(--Fussnote-ToolTip-Backgroundcolor);
}

span.Fussnote span.fncontent {
  display: none !important;
  visibility: hidden !important;
}

/* FESTLEGUNGEN FÜR MARGINALIEN */
.Block, .Tabelle, .Handlungsanweisung, .Sicherheitshinweis {
  clear: both; /* sollen nicht rechts weiterfließen, erst unterhalb von Marginalelementen */
}

.Zeitungslayout {
  -webkit-column-count: 2; /* Chrome, Safari, Opera */
  -moz-column-count: 2; /* Firefox */
  column-count: 2;
}
/* Attribute bei Format */
.ATT_bold_true {
  font-weight: bold;
}

.ATT_italic_true {
  font-style: italic;
}

.ATT_underline_true {
  text-decoration: underline;
}

.ATT_vertAlign_hochgestellt {
  vertical-align: +4px;
  font-size: 80%;
}

.ATT_vertAlign_tiefgestellt {
  vertical-align: -4px;
  font-size: 80%;
}

/* auszublendende Elemente */
.Haupteintrag, .Untereintrag, .VariablenWerte {
  display: none;
}


/* *****************************************************************************
       spezielle Festlegungen für WebsiteView (Kontextansicht)
****************************************************************************** */
#pub_content {
  padding-left: 0.5cm;
  font-family: var(--bs-font-sans-serif);
}

/* Links auf Unterseiten der WebsitePublikation */
.pub-pageref {
  font-family: var(--bs-font-sans-serif);
  text-align: left;
}

  .pub-pageref a::before {
    content: '> ';
  }

  .pub-pageref a {
    display: inline-block;
    padding: 2px;
    background-color: #fff;
    color: #333;
  }

    .pub-pageref a:hover {
      text-decoration: none;
      color: #003;
    }


/* modaler Dialog */
.modal-dialog {
  width: 95% !important;
}



/* FESTLEGUNGEN FÜR BLÖCKE MIT SPALTEN */
table.BLOCKSPALTEN_TABELLE {
  table-layout: fixed; /* keine dynamische Breite nach Inhalt */
  margin-top: 20px;
  margin-bottom: 20px;
}



/* NoSpacingAfter-Attribut */
.ATT_NoSpacingAfter_true {
  margin-bottom: 0px !important;
}

/* details/summary css animation test*/
summary {
  outline: none;
  display: block;
  color: black;
  background-color: #f5f5f5;
  color: #cc082a;
  border-radius: 5px;
  padding: 5px;
  position: relative;
  cursor: pointer;
  margin-top: 2px;
  margin-bottom: 2px;
}

details {
  box-sizing: border-box;
}

  details summary {
    left: 1.25rem;
    margin-right: 1.25rem;
  }

  details[open] summary {
    margin-bottom: 0px;
  }

/********************************************/
/* Details Animation                        */
div.content {
  flex-wrap: wrap;
  overflow: auto;
  height: 100%;
  padding: 0 0px;
}

details[open] > div.content {
  animation-name: slideDown;
  animation-duration: 3.6s;
  animation-fill-mode: forwards;
}

details[open] > div.content {
  animation-name: showContent;
  animation-duration: 1.6s;
  animation-delay: 0s;
  animation-fill-mode: forwards;
  margin: 0;
}

.hideInline {
  display: none;
}

.inlineTeaser:hover {
  border-bottom: 2px solid black;
  cursor: pointer;
}
/********************************************/


details[open] > summary:before {
  transform: rotate(90deg);
  transition: transform 0.6s;
}

summary:before {
  content: '';
  border-width: 0.4rem;
  border-style: solid;
  color: black;
  border-color: transparent transparent transparent #777;
  position: absolute;
  top: 50%;
  left: -1.25rem; /* je kleiner die Zahl, desto weiter links der Pfeil */
  transform: translateY(-50%) translateX(25%) rotate(0);
  transform-origin: center;
  transition: .25s transform ease;
}



@keyframes showContent {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    height: 0;
    padding: 0;
  }

  to {
    opacity: 1;
    height: var(--contentHeight);
    padding: 0px;
  }
}

#Btn_Back_To_Top {
  display: none;
}
html {
    /*height: 200%;*/
    overflow-y:auto;
}

#searchresult {
  overflow-wrap: break-word;
}

.Breadcrumb_Container {
  background-color: var(--bs-body-bg);
}

.Breadcrumb_Container_Bottom {
  background-color: transparent !important;
}

.BREADCRUMBMain {
  padding-left: 10px;
  padding-right: 10px;
  background-color: var(--all-Breadcrumb-Backcolor);
  border-radius: var(--bs-border-radius-sm) !important;
}


body {
  min-height: 100vh;
}

ul {
  padding-left: 1.25em;
}

.Main_Document {
  background-color: var(--all-Main-Doc-BackColor);
}

.Doc_Back_Color {
  background-color: var(--all-Main-Doc-BackColor);
}

.Nav_Transparency_Style {
  background-color: rgba(var(--bs-tertiary-bg-rgb),1) !important;
  height: 48px;
}

.Search_Text_Field_Desktop {
  font-size: var(--bs-nav-link-font-size);
}

#searchtextfield {
  box-shadow: none;
  color: var(--TabMob-Footer-NavBar-Color);
}

#searchtextfieldDesktop {
  width: 300px;
}

.Desktop_Container_Right {
  width: 300px !important;
  height: calc(100vh - 168px);
  max-width: 300px;
  margin-left: 0.5rem !important;
  margin-bottom: 0px !important;
  right: 0;
  position: fixed;
  top: 168px;
  background-color: var(--bs-tertiary-bg);
  padding: 0.5rem;
  color: var(--Dsk-Main-Search-Result-color)
}

.Desktop_Container_Right_Hide {
  display: none !important;
}

.Desktop_Search_Results_Button_Close {
}

.Header_Nav_Text {
  color: var(--all-Header-Nav-Text);
}

.Header_Toolbar {
  background-color: var(--all-Header-Nav-Toolbar) !important;
}

#searchtextfield::placeholder {
  color: var(--TabMob-Footer-NavBar-Color);
  opacity: 1; /* Firefox */
}

.Header_Nav_Text {
  color: var(--all-Header-Nav-Text);
}

.Header_Toolbar {
  background-color: var(--all-Header-Nav-Toolbar) !important;
}

#searchtextfield::placeholder {
  color: var(--TabMob-Footer-NavBar-Color);
  opacity: 1; /* Firefox */
}

.Make_Text_Scroll_Cool_Dock_Dsk {
  /* --g: radial-gradient(55% 20px, #0009, #0000);
    background: linear-gradient(var(--all-Main-Doc-BackColor) 10px, #0000 40px calc(100% - 40px),var(--all-Main-Doc-BackColor) calc(100% - 10px)) local, var(--g) top /100% 200%, var(--g) bottom/100% 201%;*/
}


::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  border-radius: 10px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar {
  width: 3px;
  height: 3px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #555;
}

@media (min-width:0px) {
  .Flex_Fill_Mobile {
    flex: 1 1 auto;
  }

  main {
    /*overflow-y: auto;*/
  }

  body {
    /* overflow: hidden;*/
  }
}

@media (max-width:768px) {
  main, #mainToolbar {
    margin-bottom: 57px;
  }

  .Footer_Bottom {
    position: fixed;
    bottom: 0;
    color: var(--TabMob-Footer-NavBar-Color);
    z-index: 5;
  }
}

@media (max-width:768px) and (orientation: portrait) {
  .Mobile_Footer_Left {
    flex-flow: column;
    justify-content: unset !important;
    max-height: var(--Mob-Footer-MaxHeight);
    box-shadow: rgb(0, 0, 0) 0px 0px 7px 0px;
    z-index: inherit;
  }

  .Mobile_Container_Left {
    height: inherit;
    overflow: auto;
  }

  .Search_Result_List {
    max-height: unset;
    overflow: unset;
  }

  .Desktop_Container_Right {
    display: none;
  }

  .Main_Document {
    height: fit-content;
  }

  body {
    /*position: fixed;*/
    /*width: 100%;*/
  }

  table.BLOCKSPALTEN_TABELLE, table.BLOCKSPALTEN_TABELLE > tbody > tr, table.BLOCKSPALTEN_TABELLE > tbody > tr > td {
    overflow-x: auto;
  }
}


@media (min-width:768px) and (max-width:992px), (max-width:768px) and (orientation: landscape) {
  .Mobile_Footer_Left {
    position: fixed;
    flex-flow: row;
    left: 0px;
    top: 0px;
    border-bottom-right-radius: var(--bs-border-radius-xxl);
    border-top-left-radius: 0px !important;
    height: 100%;
    box-shadow: rgb(0, 0, 0) 0px 0px 7px 0px;
    z-index: inherit;
  }

  .Show_Main_Toolbar_Mobile {
    right: 0px !important;
    top: 0px;
    left: unset !important;
    border-top-left-radius: var(--bs-border-radius-xxl);
    z-index: 2;
  }

  .Mobile_Menu_Left {
    flex-direction: column-reverse !important;
    height: 100%;
    align-items: end;
    width: auto !important;
  }

  .Mobile_Container_Left {
    width: auto !important;
    height: 100%;
    max-width: 200px;
    order: 1;
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
    margin-bottom: 0px !important;
  }

  .Search_Result_List {
    max-height: unset;
  }

  .Desktop_Container_Right {
    display: none;
  }

  .Main_Document {
    height: fit-content;
  }

  body {
    margin-left: 75px;
  }

  main {
    margin-bottom: 0px;
  }

  .Footer_Bottom {
    position: unset;
    bottom: unset;
    color: var(--TabMob-Footer-NavBar-Color);
    z-index: 5;
  }
}

@media (min-width:992px) {
  .Flex_Fill_Mobile {
    flex: 1 1 auto; /* nur scrollen des Contents */
  }

  /* separates Scrollen von Nav und Content */
  #mainToolbar, article {
    height: 100%;
  }

  article {
    overflow: auto;
    width: 100%;
  }

  #mainToolbar {
    min-width: var(--Dsk-Main-ToolBar-MinWidth);
  }

  main, body {
    overflow: hidden;
  }

  .Make_Text_Scroll_Cool {
    /* --g: radial-gradient(55% 20px, #0009, #0000);
        background: linear-gradient(var(--bs-body-bg) 10px, #0000 40px calc(100% - 40px),var(--bs-body-bg) calc(100% - 10px)) local, var(--g) top /100% 200%, var(--g) bottom/100% 201%;*/
  }

  .Make_Text_Scroll_Cool_Search_Dsk {
    /*--g: radial-gradient(55% 20px, #0009, #0000);
        background: linear-gradient(var(--bs-tertiary-bg) 10px, #0000 40px calc(100% - 40px),var(--bs-tertiary-bg) calc(100% - 10px)) local, var(--g) top /100% 200%, var(--g) bottom/100% 201%;*/
  }

  .Stick_Top {
    position: sticky;
    top: -1rem;
  }

  #MainContentContainerFlex {
    width: Calc(100% - var(--Dsk-Main-ToolBar-MinWidth)) !important;
  }
}

@media (max-width:991px) {
  .Show_Main_Toolbar_Mobile {
    position: fixed;
    right: 0px;
    top: 0;
    width: var(--TabMob-Main-ToolBar-Width);
    height: 100vh;
    background-color: rgba(var(--bs-tertiary-bg-rgb),var(--bs-bg-opacity)) !important;
    --bs-bg-opacity: 1;
    border-top-left-radius: var(--bs-border-radius-xxl);
    box-shadow: rgb(0, 0, 0) 0px 0px 7px 0px;
    color: var(--TabMob-Main-ToolBar-Color);
    z-index: 2;
  }

  .Header_Top {
    margin-left: -100px;
    padding-left: 100px;
    margin-bottom: 1px;
  }

  .Tab_Pane_Section_TOC {
    border-right: unset !important;
  }

  .Unround_Top_Left_Corner {
    border-top-left-radius: 0px;
  }

  .Search_Result_List {
    overflow: auto;
  }

  .Desktop_Container_Right {
    display: none;
  }

  .Main_Document {
    /*height: 100%;
        overflow-y: auto;*/
  }

  .Make_Text_Scroll_Cool {
    /*--g: radial-gradient(55% 20px, #0009, #0000);
        background: linear-gradient(var(--bs-tertiary-bg) 10px, #0000 40px calc(100% - 40px),var(--bs-tertiary-bg) calc(100% - 10px)) local, var(--g) top /100% 200%, var(--g) bottom/100% 201%;*/
  }

  .Make_Text_Scroll_Cool_Dock_MobTab {
    /*--g: radial-gradient(55% 20px, #0009, #0000);
        background: linear-gradient(var(--all-Main-Doc-BackColor) 10px, #0000 40px calc(100% - 40px),var(--all-Main-Doc-BackColor) calc(100% - 10px)) local, var(--g) top /100% 200%, var(--g) bottom/100% 201%;*/
  }

  .Stick_Top {
    position: sticky;
    top: 0;
    z-index: 1;
  }


  ::-webkit-scrollbar {
    width: 3px;
    height: 3px;
    background-color: #F5F5F5;
  }

  video.datei {
    max-width: 100% !important;
    height: auto !important;
  }

  table.BLOCKSPALTEN_TABELLE, table.BLOCKSPALTEN_TABELLE > tbody > tr, table.BLOCKSPALTEN_TABELLE > tbody > tr > td {
    display: block !important;
    padding: 0px;
    margin: 0px;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto;
  }

  main div.Grafik > img {
    max-width: 100% !important;
    height: auto !important; /*die höhe soll sich automatisch anpassen*/
  }
}

.Search_Bar_Collapse {
  height: 0;
  width: 0 !important;
  visibility: collapse;
}

.Search_Container_Collapse {
  height: 0;
  width: 0 !important;
  visibility: collapse;
  margin: unset !important;
  margin-bottom: unset !important;
}

.Icon_Max_Size {
  max-height: var(--TabMob-Footer-NavIcons-MaxWidth);
  max-width: var(--TabMob-Footer-NavIcons-MaxHeight);
}

.D_Contents {
  display: contents;
}

.Header_Mobile_Break {
  flex-basis: 100%;
  height: 0;
}

.Li_Styling {
  list-style-position: inside;
  border: 1px solid var(--bs-info);
}


.No_List_Style {
  list-style-type: none;
}

#TOCTREENEW {
  margin: 0;
  padding: 0;
  padding-left: 1.25em;
}

.TOC_Caret {
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-left: -1.25em;
}

  .TOC_Caret::before {
    content: var(--all-Toc-Caret-Content);
    color: #d3d3d3;
    display: inline-block;
    margin-right: 6px;
    height: fit-content;
    font-family: var( --all-Toc-Caret-Font);
  }

.TOC_Caret-down::before {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  font-family: var( --all-Toc-Caret-Font);
}



.Ul_Nested {
  display: none;
}

.active {
  display: block;
}

.TOC_highlight {
  background-color: var(--all-Toc-Highlight-Backcolor);
  color: var(--Highlight_Color);
}

  .TOC_highlight::before {
    color: var(--Highlight_Color);
  }

.TOC_Text {
  display: flex;
  margin-top: 10px;
  padding-left: 5px;
}

.TOC_Number {
  display: var(--ShowChapterNumbers_Display);
  cursor: pointer;
  font-weight: bold;
  margin-right: 0.65em;
}

.TOC_Name {
  cursor: pointer;
  overflow-wrap: anywhere;
}


div.pub-page {
  display: none;
}

div.pub-page-active {
  display: block;
}

.Highlight_Text {
  background-color: var(--all-Main-Text-HighlightColor);
}

@media print {
  :not(.Printme):not(.PrintMeAndChild *) {
    display: none !important;
  }

  body {
    margin: 0px;
  }

  main {
    overflow: unset;
  }

  * {
    overflow: unset !important;
  }

  .anchor, .Indexeintrag {
    display: none;
  }
}

.SizeControll {
  height: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  z-index: -1000;
}

.Hyphenate_This_Content {
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

.Dont_Hyphenate_This_Content {
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}



.Header_Icon_Text {
  display: var(--Desk-Header-Icon-Text-Display);
}

.Indexeintrag {
  display: none;
}

.modal-backdrop {
  display: none !important;
}

.modal {
  background-color: rgba(0,0,0,0.6);
}

select::-ms-expand {
  display: none;
}

select {
  appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 0;
  font-family: inherit;
  font-size: 12px;
  cursor: inherit;
  line-height: inherit;
  border-color: transparent;
  outline: none;
  padding: 0px;
  align-self: end;
  text-align: center;
  width: 100%;
}

.select::after {
  width: 0px;
}


.S1 {
  align-self: var(--all-S1-Align-Self);
  text-align: var(--all-S1-Text-Align);
  margin: var(--all-S1-Margin);
  flex: 1 1 0px;
}

.S2 {
  align-self: var(--all-S2-Align-Self);
  text-align: var(--all-S2-Text-Align);
  margin: var(--all-S2-Margin);
  flex: 1 1 0px;
}

.S3 {
  align-self: var(--all-S3-Align-Self);
  text-align: var(--all-S3-Text-Align);
  margin: var(--all-S3-Margin);
  flex: 1 1 0px;
}

.Header_Top {
  background-color: var(--all-Header-Top-Background-Color);
}

.PAGESUBNAVIGATION {
  display: var(--all-Content-Toc-Display);
}

.TocNr {
  display: var(--all-Content-Toc-Nr-Display);
}


/*translationSource*/
.colorHighlightDL {
  color: #ff6e00 !important;
  background-color: #fffec3;
}

.colorHighlightTM {
  color: #0000ff !important;
  background-color: #fffec3;
}

.colorHighlightPT {
  color: #009933 !important;
  background-color: #fffec3;
}

.colorHighlightTO {
  color: #669999 !important;
  background-color: #fffec3;
}

.colorHighlightRsNoTranslation {
  color: #ff0000 !important;
}

details summary::-webkit-details-marker {
  display: none;
}

.HiliteQV {
  background: #2081bf61;
  border-bottom: solid 2px #2081bf;
  transition: background 450ms ease-out;
  border-radius: 3px;
}

.ATT_RSLanguageTextRightToLeft_true{
  direction:rtl;
}


/** CSS für teXary */

.badge-outline.badge-success {
  border-style: solid;
  border-width: 1px;
  border-color: #a7f3d0;
  background-color: #ecfdf5;
  color: #047857;
}

.badge-outline.badge-primary {
  border-style: solid;
  border-width: 1px;
  border-color: oklch(93.2% .032 255.585);
  background-color: oklch(97% .014 254.604);
  color: oklch(48.8% .243 264.376);
}

.badge-outline.badge-destructive.badge-outline {
  border-style: solid;
  border-width: 1px;
  border-color: oklch(93.6% .032 17.717);
  background-color: oklch(97.1% .013 17.38);
  color: oklch(50.5% .213 27.518);
}

.badge-outline {
  border-style: solid;
  border-width: 1px;
  border-color: #e5e7eb;
  background-color: #e5e7eb;
  color: #374151;
}

.badge {
  height: calc(0.25rem * 6);
  min-width: calc(0.25rem * 6);
  gap: calc(0.25rem * 1.5);
  border-radius: calc(8px - 2px);
  font-size: 0.75rem;
  line-height: 1.2;
  padding-inline: .45rem;
}

.badge {
  background-color: #f3f4f6;
  font-weight: 500;
  white-space: nowrap;
  color: #111827;
  justify-content: center;
  align-items: center;
  display: inline-flex;
}

/* Popup-Container */
.term-popup {
  position: fixed;
  z-index: 9999;
  max-width: 360px;
  box-sizing: border-box;
  padding: 16px;
  background: #ffffff;
  color: #111827;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,.12);
  font: 14px/1.45 system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

/* Vertikaler Abstand zwischen Sektionen */
.tp-stack > * + * {
  margin-top: 12px;
}

/* Header */
.tp-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.tp-title {
  margin: 0;
  font-size: 16px; /* text-base */
  font-weight: 600; /* semibold */
}

/* Schließen-Button (Icon-Only) */
.tp-btn {
  appearance: none;
  border: 1px solid #e5e7eb;
  background-color: #1379f0;
  color: #ffffff;
  border-radius: 8px;
  padding: 6px;
  cursor: pointer;
  line-height: 0;
  transition: background .15s ease, border-color .15s ease, transform .06s ease;
}

  .tp-btn:focus {
    outline: 2px solid rgba(37,99,235,.25);
    outline-offset: 2px;
  }

  .tp-btn:hover {
    background: #3f93f3;
  }

  .tp-btn:active {
    transform: translateY(1px);
  }

  .tp-btn svg {
    width: 16px;
    height: 16px;
    display: block;
  }

/* Label + Wert in einer Zeile */
.tp-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.tp-label {
  color: #6b7280;
}

/* Sektionstitel */
.tp-section-title {
  font-weight: 600;
  margin: 0 0 4px 0;
}

.badge-clickable {
  cursor: pointer;
}

/* Listen */
.tp-list {
  margin: 0;
  padding-left: 1.2em; /* ähnlich list-inside */
}

  .tp-list li {
    margin: 4px 0;
  }

/* Hyperlinks - Linkbutton */
.btn-link {
  display: inline-flex;
  align-items: center; /* vertikal zentrieren */
  justify-content: center; /* horizontal zentrieren */
  border-radius: 6px;
  font-size: 0.75rem;
  border-style: solid;
  border-width: 1px;
  border-color: #a7d8f3;
  background-color: #eef8ff;
  color: #054f78;
  text-decoration: none;
  padding-inline: .45rem;
  height: calc(0.25rem * 6);
  white-space: nowrap; /* einzeilig halten (optional) */
  vertical-align: middle; /* korrekte Inline-Ausrichtung im Flow */
  cursor: pointer;
  transition: background-color 160ms ease, transform 80ms ease;
}

  .btn-link:hover {
    background-color: #c2e9fb;
  }

  .btn-link:active {
    transform: translateY(1px);
  }

  .btn-link:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.5);
  }

  .btn-link:visited {
    color: #047857;
  }

.PGXPOPUPBUTTON {
    color: rgba(var(--bs-link-color-rgb), var(--bs-link-opacity, 1));
    text-decoration: underline;
}
