.ophys-runtime-banner {
  position: fixed;
  z-index: 100000;
  left: 50%;
  bottom: 18px;
  width: min(760px, calc(100% - 28px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(242, 215, 125, .38);
  border-radius: 16px;
  background: rgba(6, 15, 29, .97);
  color: #f8f5eb;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .48);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ophys-runtime-banner[hidden] { display: none !important; }
.ophys-runtime-banner[data-kind="error"] { border-color: rgba(255, 117, 117, .62); }
.ophys-runtime-banner[data-kind="offline"] { border-color: rgba(76, 201, 232, .52); }
.ophys-runtime-banner[data-kind="warning"] { border-color: rgba(242, 215, 125, .62); }
.ophys-runtime-banner__content { min-width: 0; display: grid; gap: 3px; }
.ophys-runtime-banner__content strong { font-size: 14px; }
.ophys-runtime-banner__content span { color: #c9d0dc; font-size: 13px; line-height: 1.45; }
.ophys-runtime-banner__actions { display: flex; align-items: center; gap: 8px; flex: none; }
.ophys-runtime-banner button {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: inherit;
  min-height: 36px;
  padding: 7px 12px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.ophys-runtime-banner [data-runtime-close] { width: 36px; padding: 0; font-size: 22px; line-height: 1; }
@media (max-width: 620px) {
  .ophys-runtime-banner { align-items: flex-start; bottom: 10px; gap: 10px; padding: 13px; }
  .ophys-runtime-banner__actions { flex-direction: column-reverse; }
  .ophys-runtime-banner [data-runtime-retry] { font-size: 12px; }
}
