/* Single Date
–––––––––––––––––––––––––––––––––––––––––––––––––– */


/* Date Global Styling
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.DateInput {
    background: transparent
}

/* Removes the default arrow above the calendar popup */
.DateInput_fang {
    display: none;
}


/* Single Date
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.add_date_component {
    display: flex;
    flex-direction: column;
    margin-right: 8px; /* REVIST! need for task queue but this shouldn't be applied to all date components  */
}

/* Style the Date Input Text Box */
.add_date_component .DateInput input {
    min-width: 216px;
    max-width: fit-content;
    height: 34px;
    padding: 8px;
    margin: 12px;
    font-size: 14px;
    font-weight: 500;
    border: 0.5px solid #d9d9d9;
    border-radius: 6px;
    outline: none;
    background-color: transparent;
    color: white;
}

/* Removes default styling */
.SingleDatePickerInput {
    background-color: transparent;
}

/* Removes default styling */
.SingleDatePickerInput__withBorder {
    border: none;
}

/* Adjust the clearDate button positioning as needed */
.add_date_component .SingleDatePickerInput_clearDate {
    right: -65px;
}

/* Remove default styling on hover */
.SingleDatePickerInput_clearDate:hover {
    background: transparent;
}

/* Styles the calendar popup */
.SingleDatePicker_picker {
    top: 45px !important;
    border-radius: 6px;
}

/* Style the calendar */
.add_date_component .DatePicker__calendar-container {
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Style the calendar days */
.add_date_component .CalendarDay__default {
    font-size: 14px;
    font-weight: 500;
}

/* Style the selected day */
.add_date_component .CalendarDay__selected {
    background-color: #1890ff;
    color: #fff;
}

/* Style the hovered day */
.add_date_component .CalendarDay__hovered_span {
    background-color: rgba(0, 0, 0, 0.1);
}

