
/* General Date Picker Input Styling */
.date-picker .DateInput_input {
  font-size: 13px; /* Reduced font size for compactness */
  font-family: 'Futura Std Medium', sans-serif;
  color: #444;
  font-weight: bold;
  text-align: center;
  border-radius: 4px;
  padding: 5px;
  width: 100%;
  border: 1px solid #ccc;
}


/* Calendar Popup Styling */
.date-picker .SingleDatePicker_picker {
  width: 320px; /* Further reduced width */
  height: 260px;
  font-size: 12px; /* Smaller font size */
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  margin-top: 5px; /* Small gap between input and calendar */
  position: absolute !important;
  z-index: 1052; /* Ensure it sits above the popover */
  top: auto !important;
  transform: none !important;
  overflow: hidden; /* Prevent overflow */
}



/* Clear button styling */
.date-picker .SingleDatePickerInput_clearDate {
  border-radius: 5px; /* Rounded corners */
  display: none; /* Hide the clear button */
}

