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}
23th {
24 background-color: #f8f9fa;
25 padding: 12px 16px;
26 text-align: left;
27 font-weight: 600;
28 color: #333;
29 border-bottom: 2px solid #dee2e6;
30 cursor: pointer;
31}
33th:hover {
34 background-color: #e9ecef;
35}
37td {
38 padding: 12px 16px;
39 border-bottom: 1px solid #dee2e6;
40 color: #444;
41}
43tr:hover {
44 background-color: #f8f9fa;
45}
47tr:last-child td {
48 border-bottom: none;
49}
51.table-container {
52 margin: 20px 0;
53 overflow-x: auto;
54}