.history-table tbody tr {
    transition: background-color 0.2s ease;
}

.history-table tbody tr:hover {
    background-color: #f5f9ff;
    cursor: pointer;
}

.history-table tbody tr.editing {
    background-color: #e7f1ff;
}

.history-table tbody tr:hover td {
    background-color: #f5f9ff !important;
    cursor: pointer;
}

.history-table tbody tr.editing td {
    background-color: #ffffff !important;
}

.history-table input,
.history-table select {
    width: 100%;
}