tbody tr.row-generating {
    /* Force animation to override row-generated styles */
    animation: genFlash 1s ease-in-out infinite !important;
    background: #fffbe6;
}

@keyframes genFlash {
    0% { background: #fffbe6; }
    50% { background: #ffeec4; }
    100% { background: #fffbe6; }
}

/* Generated Rows Colors */
/* 淡蓝色 (Light Blue) */
tbody tr.row-generated.gen-odd {
    background: #e6f7ff;
    animation: none; /* Safety: Ensure no flashing after generation */
}

/* 淡紫色 (Light Purple) */
tbody tr.row-generated.gen-even {
    background: #f3e5f5;
    animation: none; /* Safety: Ensure no flashing after generation */
}

tbody tr.row-error {
    background: #e98393 !important;
    color: #fff;
    animation: none !important;
}
