#bottom-sheet-root {
  transform: translateY(100%);
  position: fixed;
  z-index: 999;
  background: rgba(0, 0, 0, 0.376);
}

#bottom-sheet-root.show {
  inset: 0px;
  transform: translateY(0);
  pointer-events: auto;
}

.bottom-sheet-overlay {
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  position: fixed;
  bottom: 0px;
  inset-inline: 0px;
  min-height: 80px;
  max-height: 83%;
  border-radius: 24px 24px 0px 0px;
  box-shadow:
    rgba(20, 27, 40, 0.04) 0px -4px 6px -2px,
    rgba(20, 27, 40, 0.06) 0px -12px 16px -4px;
  display: flex;
  flex-direction: column;
  pointer-events: none;
}

#bottom-sheet-root.show .bottom-sheet-overlay {
  transform: translateY(0);
  pointer-events: auto;
}

.bottom-sheet-container {
  background: #fff;
  max-height: 80vh;
  overflow: hidden;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
}

.bottom-sheet-content {
  display: flex;
  flex-direction: column;
  max-height: 80vh;
}

.bottom-sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.bottom-sheet-title {
  margin: 0;
  font-size: 1.25rem;
}

.bottom-sheet-header .close {
  font-size: 3rem;
}

.bottom-sheet-body {
  overflow-y: auto;
  padding: 20px;
  flex: 1 1 auto;
}

.bottom-sheet-footer {
  padding: 15px 20px;
  border-top: 1px solid #eee;
  text-align: right;
}
