.date-picker-drawer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
  z-index: 1000;
  border-radius: 8px 8px 0 0;
}

.date-picker-drawer-content {
  //transform: translateY(100%);
  //transition: transform 0.3s ease-out;
  //position: absolute;
  //padding: 20px;
  //bottom: 0;
  //width: 100vw;
  //background-color: #fff;
  //z-index: 1000;
  //box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.1);
  //border-radius: 8px 8px 0px 0px;
  //height: 650px;
}

.date-picker-drawer.open {
  transform: translateY(0);
}

.date-picker-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
}