/* Sassi family - the CSS of the shared offer at the top of the app (shared/php/quiet_bar.php).
   Owner 2026-09-20: shared code carries its own CSS. This file exists because the shared markup leaned on each app's
   `.flash`, and `.flash` does not mean the same thing in every assistant: in tasks and food it is a neutral strip with
   no colour of its own, in links it IS the error style - red text on a red tint (links' app.css line 308). The calm
   line of the bar carries neither .warn nor .ok, so in links it rendered as an error: "התזכורות מגיעות לדפדפן" in the
   colour of a failure. Found by the links session, 2026-09-20, by measuring computed styles rather than reading them.

   .qbar therefore states the whole look itself and never inherits an app's idea of what a strip means. The element
   keeps `flash` as well, so an app that has not linked this sheet yet looks exactly as it did before - the sheet is
   loaded after app.css, and takes over the moment it is there.

   Values are tasks': the same geometry it has had all along, so nothing changes in the assistant that was already
   right. What changes in links is the fault: the calm line stops being red. */

.qbar{border-radius:14px;padding:.7rem 1rem;margin-bottom:14px;display:flex;gap:.6rem;align-items:flex-start;word-break:break-word;background:transparent;color:inherit}
.qbar.warn{background:rgba(251,191,36,.12);color:var(--warn)}
