.calendarContainer {
    background-color: var(--color-xModeBackground);
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 25rem;
    border-radius: 8px;
}
.calendar {
    width: 24rem;
    height: auto;
    margin: 20px 0;
    background-color: var(--color-xModeBackground);
    box-shadow: var(--color-xModeBoxShadow);
    border-radius: 8px;
    color: #fff;

}
.close {
    text-shadow: none !important;
    opacity: 1 !important;
}
#closeCalendarButton {
background-color: white;
    border-radius: 10px;
border: none;
font-size: 35px;
color: var(--color-primary);
width: 100%;
text-align: right;
}
#time:focus, #finalTimePicker:focus {
outline: 4px solid rgba(255,88,0,.2);
}
.month {
    width: 100%;
    height: auto;
    background-color: var(--color-tertiary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
    text-align: center;
    text-shadow: 0 0.15rem 0.25rem rgba(0, 0, 0, 0.5);
    border-radius: 8px 8px 0 0;
}

.month i {
    font-size: 1.25rem;
    cursor: pointer;
}

.month h1 {
    font-size: 1.5rem;
    font-weight: 200;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin: 12px 0 0 0;
    padding-top: 14px;
}

.month p {
    font-size: 0.8rem;
    margin-top: 0px;
}

.weekdays {
    width: 100%;
    height: 2.5rem;
    padding: 0 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    border-bottom: 1px solid rgb(37, 37, 37);
    background-color: rgb(37, 37, 37, 0.2);
}

.weekdays div {
    font-size: 1em;
    font-weight: 200;
    letter-spacing: 0.05rem;
    width: calc(22.1rem / 7);
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(37, 37, 37);
}

.days {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 0.1rem;
    position: relative;
    left: 10px;
    color: var(--color-primary-text);
}

.days div {
    font-size: 1em;
    margin: 0.15rem;
    width: calc(20.1rem / 7);
    height: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 0 0.15rem 0.25rem rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s;
}

.daysOfTheMonth, .prev-date, .next-date, .todayDate {
color: var(--color-primary);
}

.partialBlockedDate {
    color: #b4b4b4;
}

.days div:hover:not(.selected) {
    background-color: var(--color-tertiary);
    border-radius: 8px;
    cursor: pointer;
    color: var(--color-white);
}

.block-date{
    opacity: 0.2 !important;
    cursor: not-allowed !important;
}

.bookedDateCalendar {
    color: slategray;
    border-radius: 8px;
    opacity: 0.2 !important;
    cursor: not-allowed !important;

}

.selectDateCalendar {
    background-color: var(--color-tertiary);
    border-radius: 8px;
    color: #fff;
}

.cleanInputButton {
    font-size: 1rem;
    text-align: center;
    background: #DA2C43 ;
    height: 2rem;
    width: 2rem;
    border-radius: 1rem;
    cursor: pointer;
}

.range-select {
    background: rgba(255, 88, 0, 0.3);
    border-radius: 8px;
}

.timepicker-digital-display, .timepicker-canvas-bg  {
    background-color: #ff5800 !important;
}

.Pareva-bg {
    background-color: #ff5800 !important;
}
.d-grid-time {
    display: grid;
    grid-template-columns: auto auto;
    gap: 5px;
    text-align: left;
    margin-top: 10px;
}

.timepicker {
    width: 100%;
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid var(--color-primary);
}
.inputContainer {
    display: grid;
    grid-template-columns: auto auto auto;
    justify-content: center;
    align-content: space-around;
    grid-gap: 1rem;
    width: 100%;
}
.cleanAllButton {
background-color: white;
border: none;
color: var(--color-negative);
    text-decoration: underline;
padding: 0px;
}
.dateInputs {
padding: 10px;
border: none;
text-align: left;
    color: var(--color-primary-text);
    background-color: var(--color-xModeBackground) !important ;
}

.form-floating:has(input[type="hidden"]){
    display: none;
}
.form-floating label {
color: var(--color-primary-text);
}

.time-picker {
    display: inline-block;
    transform: translateY(10px);
    background: #eeeeee;
    border-radius: 6px;
}

.time-picker__select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: none;
    text-align: center;
    border: 1px solid #dddddd;
    border-radius: 6px;
    padding: 6px 10px;
    background: #ffffff;
    cursor: pointer;
    font-family: 'Heebo', sans-serif;
}
.endTimeInCaseOfDropdown {
    position: relative;
    top: 1rem;
}
#resetInput {
    border-top: 1px solid lightgrey;
    padding: 10px;
    justify-content: end;
    background: white;
    border-radius: 0 0 10px 10px;
}