.app-update {
  position: fixed;
  top: calc(10px + env(safe-area-inset-top, 0px));
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: calc(100vw - 24px);
  padding: 8px 10px 8px 14px;
  border: 1px solid #73d5eb;
  border-radius: 999px;
  background: linear-gradient(145deg, #002a5c, #0e527c);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 42, 92, .28);
  font-size: .82rem;
  line-height: 1.2;
}
.app-update__icon { display: inline-flex; align-items: center; font-size: 16px; }
.app-update__text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-update__action {
  flex: 0 0 auto;
  border: 0;
  border-radius: 999px;
  padding: 6px 12px;
  background: #31bedd;
  color: #002a5c;
  font-weight: 600;
  cursor: pointer;
}
.app-update__close {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}
.app-update__action:focus-visible, .app-update__close:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.app-update__action:hover { background: #73d5eb; }
.app-update__close:hover { background: rgba(255, 255, 255, .14); }
body.theme-dark .app-update { border-color: #0e527c; }
body.modal-open .app-update, body.swal2-shown .app-update { display: none; }
@media (max-width: 575.98px) {
  .app-update { font-size: .78rem; padding: 7px 8px 7px 12px; }
  .app-update__action { padding: 6px 10px; }
}
