/* ------------------------------------------------------------------
   DEMO-EXTRA.CSS — nur Elemente, die es im echten Produkt nicht gibt
   (Demo-Banner, Demo-Badge im Header). Alles andere kommt 1:1 aus
   finanzbuch-shell.css / buch-header.css / buch-sidebar.css.
   ------------------------------------------------------------------ */

#demoBanner {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  background: #162039;
  color: rgba(255,255,255,0.88);
  font-size: 0.76rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(245,197,24,0.25);
}
#demoBanner .demo-banner-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #F5C518; flex-shrink: 0;
  animation: demoPulse 2s infinite;
}
#demoBanner a {
  color: #F5C518; font-weight: 700; text-decoration: underline;
  text-underline-offset: 2px; white-space: nowrap;
}
#demoBanner a:hover { color: #fff; }
@keyframes demoPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }

.demo-badge {
  background: rgba(245,197,24,0.15);
  border: 1px solid rgba(245,197,24,0.4);
  color: #F5C518;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}

@media (max-width: 640px) {
  #demoBanner { font-size: 0.7rem; padding: 0.45rem 0.75rem; }
}
