/* ====================================================================================================== */
/* ======== START: History                                                      
/* ====================================================================================================== */
#history-div{
    
    margin: 0 0 10px 0; /* Reset left and top margin, add spacing below */
    display: flex; /* Keep the "Undo" button and history aligned */
    align-items: center;
    gap: 10px;           
}
#history {
    overflow-y: hidden;  
    overflow-x: auto;    
    background-color: white;
    text-align: center;
    max-width: 400px;
    font-size: 25px;
    white-space: nowrap;
}

.history-red {
    color: #E0080B;
}

.history-black {
    color: black;
}

.history-green {
    color: green;
}
