.date-slider {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    overflow:hidden;
    padding-top:20px;
    width: calc(100% - 0px);
    /*margin-left: 40px;*/
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.calendar-track {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    position: relative;
}

.selection-background {
    position: absolute;
    top: 0;
    height: 100%;
    background: rgba(246, 246, 246, 1);
    border-radius: 10px;
    z-index: 1;
    display: none;
    transition: all 0.3s ease;
}

.month-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 75px;
    background: transparent;
    margin: 0 8px;
    left: 40px;
    z-index: 10;
    transform:rotate(180deg);
    pointer-events: none;
    color: rgba(0, 0, 0, 0.5);
    border-left:1px solid rgba(217, 217, 217, 1);
}

.month-name {
    color: rgba(0, 0, 0, 0.5);
    text-align: center;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.day {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 75px;
    border-radius: 0px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: transparent;
    border: 1px solid transparent;
    position: relative;
    z-index: 2;
}

.day:hover {
    background: rgba(246, 246, 246, 1);
}
.day.selected-day:hover {
    background: transparent;
}


.day.weekend .weekday {
    color: rgba(181, 43, 61, 1);
}

.day .weekday{
    color:rgba(153, 153, 153, 1);
    font-size: 12px;
    font-weight: 500;
}

.day.past-day{
    opacity:.6;
}
.day-number {
    font-size: 20px;
    font-weight: 500;
}

.highlight-dot {
    position: absolute;
    top: 4px;
    left: 40%;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(181, 43, 58, 1);
}

.clear-selection {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(0, 66, 190, 1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index:100;
}

.clear-selection:hover {
    background: rgba(0, 66, 190, 1);
}

.navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 20;
}
.navigation:after {
    content: '';
    position: absolute;
    z-index: -2;
    top: -10px;
    left: 0;
    width: 120%;
    height: calc(100% + 20px);
    background: #ffffff;
}
.navigation:before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f6f6f6;
}

.navigation:hover {
    background: #f5f5f5;
    /*border-color: #2196f3;*/
}

.nav-left {
    left: 0px;
    margin-top: 10px;
}

.nav-right {
    right: 0px;
    margin-top: 10px;
}

