
.date-picker-wrapper {
  position: absolute;
  z-index: 100;
  /* width: 100%;
  max-width: 300px; */
  /* height: 60px;  */
  /* background-color: rgb(58 86 183);
  margin: 30px auto;
  box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2); */

  /* cursor: pointer; */
  user-select: none;
  
}


.selected-date {
  /* width: 100%;
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  color: white;
  font-size: 28px; */
  width: 150px;
  align-items: center;

}

.dates-container {
  display: none; 
  position: relative; 
   top: 100%;
  left: 0;
  right: 0;

  background-color: #fff;



  height: 0; /* Set height to 0 when hidden */
  overflow: hidden; /* Hide any overflow content */
}

.active {
  display: block; /* Show the container when the parent has the active class */
  height: auto; 
  /* transition: opacity 0.3s, transform 0.3s; */
}
