diff --git a/client/public/index.html b/client/public/index.html index 2b89f64..075fc78 100644 --- a/client/public/index.html +++ b/client/public/index.html @@ -34,6 +34,34 @@ min-width: 200px; } + /* Alternating row colors for better readability */ + .ag-row-odd { + background-color: #f8f9fa !important; + } + + .ag-row-even { + background-color: #ffffff !important; + } + + /* Maintain alternating colors on hover */ + .ag-row-odd:hover { + background-color: #e9ecef !important; + } + + .ag-row-even:hover { + background-color: #f1f3f4 !important; + } + + /* Ensure JTL-only rows (red rows) override alternating colors */ + .ag-row[style*="background-color: rgb(255, 235, 238)"] { + background-color: #ffebee !important; + } + + /* Selected rows */ + .ag-row.selected-row { + background-color: #e3f2fd !important; + color: #1976d2 !important; + }