/* Notification Bar – nur geladen, wenn aktiv (per PHP) */
.u-notice.u-notice--global {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  box-sizing: border-box;
  background-color: #000;
  color: #fff;
  font-size: 0.5rem;
  padding: 4px 8px;
  text-align: center;
  z-index: 9999;
}

/* Optional: auf kleinen Screens etwas lesbarer */
@media (max-width: 480px) {
  .u-notice.u-notice--global { font-size: 0.6rem; }
}