File size: 533 Bytes
874ecbd
 
b9c937f
662dff2
 
33296e3
b9c937f
662dff2
 
b9c937f
662dff2
 
 
5531cc1
662dff2
 
b9c937f
662dff2
 
 
e3574b9
b9c937f
 
 
e3574b9
 
b9c937f
 
 
e3574b9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* styles.css */
/* Your CSS styles for the table */
table {
    border-collapse: collapse;
    width: 100%;
    table-layout: fixed;
    word-wrap: break-word;
}

th, td {
    padding: 8px;
    border: 1px solid black;
    text-align: center;
    width: auto; /* Or specify a fixed width for th/td */
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.timestamp {
    background-color: rgb(255, 0, 0);
    color: rgb(128, 128, 128);
}

.original {
    background-color: rgb(0, 0, 0);
    color: rgb(255, 255, 255);
}