/* Custom Scrollbar for History */
#history-list::-webkit-scrollbar {
    width: 8px;
}

#history-list::-webkit-scrollbar-track {
    background: #f1f1f1;
}

#history-list::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 4px;
}

#history-list::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Button Active State to simulate press */
button:active {
    transform: scale(0.98);
}
