.date-picker-dropdown {
    position: absolute;
    right: 0;
    margin-top: 8px;
    background: white;
    border: 1px solid rgba(238, 238, 239, 1);
    border-radius: 8px;
    padding: 12px;
    width: 248px;
    display: none;
    z-index: 1000;
}

.date-picker-dropdown.active {
    display: block;
}

.date-picker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.date-picker-nav {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height:16px;
}


.date-picker-month {
    font-size: 14px;
    font-weight: 650;
    color: #000;
}

.date-picker-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0px;
    margin-bottom: 4px;
}

.date-picker-weekdays div {
    text-align: center;
    font-size: 12px;
    font-weight: 450;
    color: rgba(153, 153, 153, 1);
    padding: 0;
    text-transform: lowercase;
}

.date-picker-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0;
    margin-bottom: 16px;
    overflow: hidden;
}

.date-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 12px;
    cursor: pointer;
    transition: all 0.2s;
    color:rgba(76, 76, 76, 1);
}

.date-day:not(.disabled):hover {
    background: rgba(0, 66, 190, 1);
    color:#fff;
}

.date-day.disabled {
    color: #ddd;
    cursor: default;
}

.date-day.in-range {
    background: #e5ecf8;
    position:relative;
    color:rgba(0, 0, 0, 1);
}
.date-day.in-range:after{
    display:block;
    content:"";
    background: #e5ecf8;
    position:absolute;
    width:100%;
    height:100%;
    left:-50%;
    z-index:-1;
}
.date-day.in-range:before{
    display:block;
    content:"";
    background: #e5ecf8;
    position:absolute;
    width:100%;
    height:100%;
    right:-50%;
    z-index:-1;
}
.date-day.selected {
    background: rgba(0, 66, 190, 1);
    color:#fff;
    z-index:1;
}
.date-day.selected.in-range:before, .date-day.selected.in-range:after{
    display:none;
}
.date-picker-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.date-input {
    flex:1;
    width:100%;
    max-width:100px;
    padding:7px 0 5px;
    text-align:center;
    font-size:15px;
    font-weight:650;
    color:rgba(0, 66, 190, 1);
    border-radius:10px;
    border:1px solid rgba(217, 217, 217, 1);
    text-transform: lowercase;
}

.date-input:focus {
    outline: none;
    border-color: #4a90e2;
}

.date-picker-inputs span {
    color: #999;
    font-size: 12px;
}

.date-picker-footer {
    margin-top: 16px;
}

.date-picker-clear {
    width: 100%;
    font-size:16px;
    padding:10px 0;
    font-weight:650;
    color:#000;
    background:#fff;
    border:1px solid rgba(217, 217, 217, 1);
    outline:none;
    border-radius:10px;
    transition: all 0.2s;
}

.date-picker-clear:hover {
    background: rgba(0, 66, 190, 1);
    color:#fff;
}
