/* public/main.css */

:root,
body,
[data-bs-theme="dark"],
[data-bs-theme="light"] {
  --bs-primary: #ff9900 !important;
  --bs-primary-rgb: 255, 153, 0 !important;
  --bs-link-color-rgb: 255, 153, 0 !important;
  --bs-link-hover-color-rgb: 230, 138, 0 !important;
}

/* Links direkt erzwingen */
a {
  color: #ff9900 !important;
}
a:hover {
  color: #e68a00 !important;
}

/* Inline Code */
code:not(pre code) {
  color: #ff9900 !important;
  background-color: rgba(255, 153, 0, 0.1) !important;
  padding: 0.15rem 0.35rem;
  border-radius: 4px;
}