body {
    font-family: system-ui, sans-serif;
    background-color: #f7f9fb;
    padding: 2rem;
    color: #333;
  }
  
  h1 {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  table {
    width: 80%;
    margin: 0 auto;
    border-collapse: collapse;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
  }
  
  /* header row: dark blue bg, white font */
  thead {
    background-color: #002868; /* flag blue */
    color: white;
    font-weight: bold;
  }
  
  th, td {
    padding: 1rem;
    text-align: left;
  }
  
  /* alternating rows: white and soft red */
  tbody tr:nth-child(even) {
    background-color: #ffffff;
  }
  
  tbody tr:nth-child(odd) {
    background-color: #fddede; /* light red / pinkish */
  }
  
  tbody tr:hover {
    background-color: #ffeef0; /* soft hover */
    cursor: default;
  }
  