/* Standard-Link */
a {
    color: #f9b116;  /* Primärfarbe */
    text-decoration: none; /* Entfernt Unterstreichung */
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

/* Hover-Zustand */
a:hover {
    color: #686868;  /* Sekundärfarbe */
    text-decoration: underline; /* Unterstreicht beim Hovern */
}

/* Active-Zustand (beim Klicken) */
a:active {
    color: #002040; /* Dunklere Version der Hauptfarbe */
}

/* Focus-Zustand (Tastaturnavigation) */
a:focus {
    outline: 2px solid #686868; /* Sekundärfarbe als Umrandung */
    outline-offset: 2px;
}

/* Bereits besuchte Links */
a:visited {
    color: #002850; /* Etwas gedämpftere Hauptfarbe */
}

.btn-info-pt {
  --bs-btn-color: #fff;
  --bs-btn-bg: #f9b116;
  --bs-btn-border-color: #f9b116;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: #686868;
  --bs-btn-hover-border-color: #E0B23A;
  --bs-btn-focus-shadow-rgb: 255, 203, 66;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: #E0B23A;
  --bs-btn-active-border-color: #C99F33;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #f9b116;
  --bs-btn-disabled-border-color: #f9b116;
}