.g-sheet {
  position: fixed;
  inset: 0px;
  inset-block-start: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.g-sheet .g-sheet-veil {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
.g-sheet .g-sheet-dialog {
  width: 100%;
  height: 100%;
  max-height: calc(100dvh - 32px);
  background-color: #fff;
  overflow: hidden;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100;
}
.g-sheet .g-sheet-dialog-header {
  width: 100%;
  height: 35px;
  position: relative;
}
.g-sheet .g-sheet-dialog-header::after {
  content: "";
  width: 40px;
  height: 4px;
  border-radius: 4px;
  background-color: #ececec;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
