1:root {
2 font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
3 line-height: 1.5;
4 font-weight: 400;
5}
7body {
8 margin: 0;
9 min-width: 320px;
10 min-height: 100vh;
11 background-color: #f5f5f5;
12}
14table {
15 width: 100%;
16 border-collapse: collapse;
17 background: white;
18 box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
19 border-radius: 4px;
20 overflow: hidden;
21 font-size: 0.9rem;
22 line-height: 1.3;
23}
25th {
26 background-color: #f8f9fa;
27 padding: 8px 12px;
28 text-align: left;
29 font-weight: 600;
30 color: #333;
31 border-bottom: 1px solid #dee2e6;
32 cursor: pointer;
33 white-space: nowrap;
34}
36th:hover {
37 background-color: #e9ecef;
38}
40td {
41 padding: 6px 12px;
42 border-bottom: 1px solid #dee2e6;
43 color: #444;
44}
46tr:hover {
47 background-color: #f8f9fa;
48}
50tr:last-child td {
51 border-bottom: none;
52}
54.table-container {
55 margin: 12px 0;
56 overflow-x: auto;
57}
59/* Make filter controls more compact */
60select {
61 padding: 4px 8px ;
62 font-size: 0.9rem ;
63 min-width: 150px ;
64}
66.table-container label {
67 font-size: 0.9rem;
68}