    body {
      font-family: Arial, sans-serif;
      background: #f5f8ff;
      padding: 20px;
      color: #333;
    }

    h2 {
      margin-top: 40px;
      color: #2a4d69;
      text-align: center;
    }

    .table-container {
      margin: 20px auto;
      max-width: 800px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      background: white;
      width: 100%;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      table-layout: auto;
      word-wrap: break-word;
    }

    thead {
      background: #4da8da;
      color: white;
    }

    th, td {
      padding: 12px 10px;
      text-align: center;
      border-bottom: 1px solid #ddd;
      font-size: 16px;
    }

    tbody tr:nth-child(even) {
      background-color: #f0f8ff;
    }

    tbody tr:hover {
      background-color: #e1f5fe;
      transition: 0.3s;
    }

    @media (max-width: 600px) {
      th, td {
        font-size: 14px;
        padding: 10px 6px;
      }
    }