._MbDTCon {
  /* max-width: 280px; */
  /* margin: 40px auto; */
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  position: absolute;
  width: 100%;
  z-index: 11111;
  bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.modal-header {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  padding: 16px 0;
}

.picker-container {
  display: flex;
  justify-content: center;
  height: 240px;
  position: relative;
  overflow: hidden;
}

.picker-container::before,
.picker-container::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 2;
}

.picker-container::before {
  top: 0;
  background: linear-gradient(to bottom, white, transparent);
}

.picker-container::after {
  bottom: 0;
  background: linear-gradient(to top, white, transparent);
}

.highlight-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 100%;
  pointer-events: none;
  background-color: #eaf4ff;
  border-radius: 10px;
  z-index: 0;
}

.picker {
  flex: 1;
  text-align: center;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-width: 100px;
}

.picker::-webkit-scrollbar {
  display: none;
}

.picker div {
  height: 40px;
  line-height: 40px;
  scroll-snap-align: center;
  font-size: 16px;
  color: #aaa;
}

.picker div.active {
  position: relative;
  z-index: 2;
  font-weight: bold;
  font-size: 18px;
  color: #000;
}

.modal-footer {
  border-top: 1px solid #e0e5eb;
  padding: 24px 20px;
  text-align: center;
}

button.datepicker_btn {
  width: 90%;
  padding: 12px;
  background-color: #2979ff;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
}
