/* styles.css */
.react-datepicker-popper {
  /* z-index: 10; */
  z-index: 1500;
  /* Adjust z-index value as necessary */
  padding-top: 0 !important;
}

.react-datepicker-popper .react-datepicker__triangle {
  display: none;
  /* Hide the triangle */
}

.react-datepicker__month-container {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

/* .react-datepicker__input-container input {
  width: 100%;
  padding: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  margin: 0;
  display: block;
  box-sizing: border-box;
} */

.react-datepicker-wrapper {
  width: 100%;
}

.react-datepicker {
  border: 0;
  border-radius: 4px;
  font-family: "Roboto", sans-serif;
}

.react-datepicker__header {
  background-color: #1976d2;
  border-bottom: 1px solid #e0e0e0;
  color: #fff;
}

.react-datepicker__day--keyboard-selected {
  background-color: #1976d2;
}

.react-datepicker__current-month {
  font-weight: 400;
  font-size: 1.5em;
}

.react-datepicker__day-name,
.react-datepicker__day,
.react-datepicker__time-name {
  width: 2.75em;
  line-height: 2.75em;
  margin: 0;
}

.react-datepicker__day--today {
  border-radius: 0.3rem;
  background-color: #bad9f1;
  color: rgb(0, 0, 0);
}

.react-datepicker__day {
  outline: none;
}

.react-datepicker__month-container {
  width: 100%;
  max-width: 100%;
}

.custom-icon {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-37%);
  cursor: pointer;
}

.custom-header {
  margin: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
  border-radius: 8px;
  padding: 10px;
  gap: 1rem;
}

.custom-button {
  background-color: #1976d2;
  color: white;
  border: none;
  padding: 10px;
  margin: 0 5px;
  cursor: pointer;
  border-radius: 4px;
}

.custom-button:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}



.custom-select {
  padding: 10px;
  margin: 0 5px;
  border-radius: 4px;
  border: 1px solid #ccc;
  height: 40px; /* Set height */
  font-family: 'Roboto', sans-serif;
  background-color: #fff;
  box-shadow: 0px 1px 5px rgba(0, 0, 0, 0.2);
  overflow-y: auto; /* Added for scrolling */
}

.custom-select:focus {
  border-color: #1976d2;
  box-shadow: 0px 1px 5px rgba(25, 118, 210, 0.5);
}

.select-wrapper {
  height: 50px;
  overflow-y: visible;
}

.select {
  width: 100%;
  /* make it min-height*/
  min-height: 50px;
  border-radius: 25px;
  border-color: #555;
  padding: 10px;
}


div.react-datepicker__monthPicker{
  font-size: 16px;
}
