#timeline-picker {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
    overflow: hidden;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(249,249,249,1) 0%, rgba(249,249,249,1) 67%, rgba(249,249,249,0) 100%);
}

@media (prefers-color-scheme: dark) {
    #timeline-picker {
        background: linear-gradient(0deg, #181818 0%, #181818 67%, rgba(255,255,255,0) 100%);
    }
}

#timeline-items {
    position: absolute;
    bottom: 5px;
    height: 5px;
    /* bottom: 95dvh;
    overflow: visible; */
}
#timeline-items div {
    opacity: 0.8;
}

#timeline-items:hover div {
    height: 15px;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.timeline-line {
    height: 5px;
    position: absolute;
    background-color: red;
    border-radius: 2rem;
}

.date-label {
    background-color: #ff5e5e;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 14px;
}

#scroll-wrapper {
    scroll-behavior: smooth;
    position: relative;
    width: 100%;
    overflow-x: scroll;
    overflow-y: hidden;
    display: flex;
    cursor: grab;
}

#scroll-wrapper.scrollactive {
    cursor: grabbing;
    scroll-behavior: unset;
}

#timeline-component {
    display: flex;
    align-items: flex-end;
    height: 30px;
    gap: 10px;
    padding: 15px 0;
    position: relative;
    padding-left: 50%;
    padding-right: 50%;
}

.notch {
    width: 5px;
    height: 15px;
    background-color: #e0e0e0;
    border-radius: 2.5px;
    cursor: pointer;
    transition: background-color 0.1s, height 0.1s;
}

@media (prefers-color-scheme: dark) {
    .notch {
        background-color: #3a3a3a;
    }
}

.notch.adj1 {
  height: 30px;
}

.notch.adj2 {
  height: 20px;
}

.notch.active {
    background-color: #ff5e5e;
    height: 35px;
}
/* 
timeline-component::before, timeline-component::after {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-color: transparent;
    pointer-events: none;
} */

#scroll-wrapper::-webkit-scrollbar {
    display: none;
}

/* #timeline-component::after {
    content: 'Today';
    background-color: #747474;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 14px;
    position: fixed;
    right: 10px;
    bottom: 20px;
    z-index: 10;
} */