.agent-release-update {
  position: fixed;
  z-index: 120;
  inset: max(12px, env(safe-area-inset-top)) 16px auto 50%;
  transform: translateX(-50%);
  width: min(680px, calc(100vw - 32px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 16px 14px 18px;
  color: #172033;
  background: #fffaf0;
  border: 1px solid #e4c978;
  border-left: 5px solid #b7791f;
  box-shadow: 0 16px 34px rgb(76 58 18 / 18%);
}

.agent-release-update div {
  display: grid;
  gap: 3px;
}

.agent-release-update strong {
  font-size: 15px;
  line-height: 1.35;
}

.agent-release-update span {
  color: #665a3b;
  font-size: 13px;
  line-height: 1.45;
}

.agent-release-update button {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 15px;
  color: #fff;
  background: #76520f;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.agent-release-update button:hover {
  background: #5f420d;
}

.agent-release-update button:focus-visible {
  outline: 3px solid rgb(183 121 31 / 32%);
  outline-offset: 3px;
}

@media (max-width: 620px) {
  .agent-release-update {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .agent-release-update button {
    width: 100%;
  }
}
