Changed around line 7
- font-family: 'Segoe UI', system-ui, sans-serif;
+ font-family: "Segoe UI", system-ui, sans-serif;
Changed around line 21: body {
- h1, h2 {
+ h1,
+ h2 {
- table {
- width: 100%;
- border-collapse: collapse;
- margin: 2rem 0;
- background: white;
- box-shadow: 0 4px 6px rgba(0,0,0,0.1);
- border-radius: 8px;
- overflow: hidden;
- }
-
- th {
- background: var(--primary);
- color: white;
- padding: 1rem;
- text-align: left;
- }
-
- td {
- padding: 1rem;
- border-bottom: 1px solid #ddd;
- }
-
- tr:hover {
- background: #f5f6fa;
- }
-
- @media (max-width: 768px) {
- table {
- display: block;
- overflow-x: auto;
- }
-
- .container {
- padding: 1rem;
- }
- }
-