
.week-strip-container {
    display: flex;
    align-items: center;
    margin-top: 40px;
    background: var(--color-primary-light);
    border-radius: 5px;
    height: 70px;
    overflow: hidden;
}

.week-strip {
    display:flex;
    overflow-x:auto;
    scroll-behavior: smooth; /* smooth scrolling */
    -webkit-overflow-scrolling: touch; /* enable momentum scroll on iOS */
    list-style:none;
    padding:0;
    margin:0;
    height: 100%;
    align-items: center;
}

.week-strip-container button { 
    all: unset;
    display: none;
}

.week-strip .day-box {
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 100%;
    text-align: center;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: 400;
    position: relative;
    line-height: 1.3;
}

.week-strip .day-box::after { 
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: transparent;
}

.week-strip .day-box .day {
    font-weight: 600;
}
.week-strip .day-box .date {
    font-size: 1.3rem;
}

.week-strip .day-box .count{position: absolute;right: 12px;top: 10px;width: 20px;height: 20px;border-radius: 50%;display: flex;justify-content: center;text-align: center;align-items: center;font-size: 1.2rem;font-weight: 600;color: #fff;background: var(--color-secondary-transparent);}



.day-box.active {
    color: var(--color-primary);
}

.day-box.active::after{
    background-color: var(--color-secondary);
}

.day-box.disabled {
    text-decoration: line-through;
    cursor: not-allowed;
    color: var(--color-primary-transparent);
}

.no-results {}


@media(max-width:667px){
    .total-view-count, .no-results  { text-align: center;}

    .week-strip-container ul::-webkit-scrollbar {width: 0px; height: 0; }
    /* Track */
    .week-strip-container ul::-webkit-scrollbar-track {background:#f4f4f4; }
    /* Handle */
    .week-strip-container ul::-webkit-scrollbar-thumb {background:var(--color-secondary-alt); }
    /* Handle on hover */
    .week-strip-container ul::-webkit-scrollbar-thumb:hover {background:var(--color-secondary-alt); }


  
    .week-strip-container button {
        display: flex;
        width: 60px;
        align-items: center;
        justify-content: center;
        background: #fff;
        height: 100%;
        font-size: 2.4rem;
        color: var(--color-secondary);
    }

    .week-strip-container button:disabled{
        color: #999;
        pointer-events: none;
    }

}