.bottom-sheet {
  position: fixed;
  background-color: white;
  width: 100%;
  border-top-left-radius: var(--size-8);
  border-top-right-radius: var(--size-8);
  bottom: 0;
  max-width: 600px;
  padding: var(--size-4);
  padding-top: var(--size-8);
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 200;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 199;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

.overlay--visible {
  opacity: 1;
  pointer-events: auto;
}

.bottom-sheet--visible {
  transform: translateY(0);
}
