/**
 * Oznámení pro strávníky (ADR 0053) — informační pruh v klientské zóně.
 *
 * Barvy typů jsou plain CSS (ne Tailwind tokeny) — modul CSS se načítá přes
 * Drupal library as-is, bez theme buildu. Struktura pruhu jede na existujících
 * Tailwind utilitách v šabloně (flex/gap/p-4/rounded-lg…).
 */

.web-message-bar {
  border: 1px solid transparent;
}

.web-message-bar__text {
  line-height: 1.5;
  word-break: break-word;
}

.web-message-bar__text a {
  text-decoration: underline;
}

.web-message-bar__icon {
  color: currentColor;
}

.web-message-bar__close {
  width: 1.75rem;
  height: 1.75rem;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  border-radius: 9999px;
  opacity: 0.7;
  transition: opacity 0.15s ease, background-color 0.15s ease;
}

.web-message-bar__close:hover,
.web-message-bar__close:focus-visible {
  opacity: 1;
  background: rgba(0, 0, 0, 0.06);
}

/* Typy — barva pozadí / rámečku / textu (WCAG AA kontrast textu na pozadí). */
.web-message-bar--info {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1e3a8a;
}

.web-message-bar--success {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

.web-message-bar--warning {
  background: #fffbeb;
  border-color: #fde68a;
  color: #92400e;
}

.web-message-bar--error {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}
