/**
 * CSS Overrides für Bootstrap
 * Diese Datei überschreibt die Standard-Bootstrap-Stile
 */

/* Globale Farben überschreiben */
:root {
  --bs-blue: #0196d6 !important;
  --bs-indigo: #0196d6 !important;
  --bs-purple: #0196d6 !important;
  --bs-link-color: #0196d6 !important;
  --bs-link-color-rgb: 1, 150, 214 !important;
  --bs-link-hover-color: #0178a8 !important;
  --bs-link-hover-color-rgb: 1, 120, 168 !important;
  --bs-primary: #0196d6 !important;
  --bs-primary-rgb: 1, 150, 214 !important;
}

/* Spezifische Link-Stile */
a {
  color: #0196d6 !important;
  text-decoration: none !important;
}

a:hover, a:focus, a:active {
  color: #0178a8 !important;
  text-decoration: underline !important;
}

/* Spezifische Button-Stile */
.btn-primary, .btn-primary.disabled, .btn-primary:disabled {
  background-color: #0196d6 !important;
  border-color: #0196d6 !important;
  color: white !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary.active {
  background-color: #0178a8 !important;
  border-color: #0178a8 !important;
  color: white !important;
}

/* Fokus-Stile überschreiben */
.btn:focus, .btn.focus, .form-control:focus, .form-select:focus, input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 0.25rem rgba(1, 150, 214, 0.25) !important;
  border-color: #0196d6 !important;
}

/* Alle anderen lila Elemente überschreiben */
.form-check-input:checked {
  background-color: #0196d6 !important;
  border-color: #0196d6 !important;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
  background-color: #0196d6 !important;
  color: white !important;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: #0196d6 !important;
  color: white !important;
}

.pagination .page-item.active .page-link {
  background-color: #0196d6 !important;
  border-color: #0196d6 !important;
  color: white !important;
}

.badge.bg-primary {
  background-color: #0196d6 !important;
  color: white !important;
}

.progress-bar {
  background-color: #0196d6 !important;
  color: white !important;
}

/* Weiße Textfarbe für Buttons und Navigation Mouseover */
.btn:hover, .btn:focus, .btn:active,
.nav-link:hover, .nav-link:focus, .nav-link:active,
.navbar-nav .nav-link:hover, .navbar-nav .nav-link:focus,
.navbar-nav .nav-link:active {
  color: white !important;
}