/*
 * Estilos do banner "Nova versão disponível" do Service Worker.
 * Extraído do <style> inline do index.html pra contornar bug determinístico do
 * Vite 5.4.19 (vite:html-inline-proxy "Could not load index.html?html-proxy
 * &inline-css&index=1.css") que aparecia em ~50% dos builds e bloqueava deploy.
 * Servido como asset estático do public/, sem passar pelo bundler.
 */
#sw-update-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2147483647;
  background: #0c2362;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  font: 14px/1.4 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  display: none;
  align-items: center;
  gap: 12px;
  max-width: calc(100vw - 32px);
}
#sw-update-banner.show { display: flex; }
#sw-update-banner button {
  font: inherit;
  border: 0;
  border-radius: 6px;
  padding: 6px 12px;
  cursor: pointer;
}
#sw-update-banner .sw-update-apply { background: #fff; color: #0c2362; font-weight: 600; }
#sw-update-banner .sw-update-dismiss { background: transparent; color: #fff; opacity: .8; }
