.version-update {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  z-index: 90;
  display: flex;
  width: calc(100% - 2rem);
  max-width: 36rem;
  transform: translateX(-50%);
  flex-direction: column;
  gap: 0.75rem;
  border: 1px solid rgba(91, 79, 214, 0.3);
  border-radius: 0.5rem;
  background: #162033;
  padding: 1rem;
  color: #fff;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.version-update[hidden] {
  display: none;
}

.version-update > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 0.25rem;
}

.version-update strong {
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 600;
}

.version-update span {
  color: #cbd5e1;
  font-size: 0.75rem;
  line-height: 1rem;
}

.version-update .button {
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .version-update {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
