.slide-over-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 40;
  transition: opacity 0.3s ease;
}

.slide-over {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white, #ffffff);
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  z-index: 50;
  transition: translate 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
  padding: 24px;
}
