/* HISTORY STRIP */
#history-strip {
    height: 25px;
    display: flex;
    gap: 2px;
    margin-top: 8px;
    overflow-x: auto;
    background: #e8e1d5;
    border: 1px solid #d6cdc4;
    padding: 2px;
    border-radius: 2px;
}

#history-strip div {
    min-width: 15px;
    height: 100%;
    background: #d46a43;
    cursor: pointer;
    opacity: 0.6;
    transition: 0.2s;
    border-radius: 1px;
}

#history-strip div:hover {
    opacity: 1;
    transform: scaleY(1.2);
}
