<style>
    /* Inline fallback styles for table (in case table.css is minimal) */
    .participant-table {
      width: 100%;
      max-width: 800px;
	  overflow-x: auto;
      margin: 20px auto;
      border-collapse: collapse;
      font-family: 'Playfair Display', serif;
      background: #fff;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      border-radius: 12px;
      overflow: hidden;
    }
    .participant-table th {
      background: #1b3d6d;
      color: #ffffff;
      padding: 16px 20px;
      text-align: center;
      font-family: 'Cinzel', serif;
      font-weight: 700;
      /*font-size: 1.1rem;*/
	  font-size: 1rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .participant-table td {
      padding: 16px 20px;
      /*border-bottom: 1px solid #e6e6e6;*/
      font-size: 0.8rem;
      color: #FFFFFF;
    }
    .participant-table tr:nth-child(even) td {
      background-color: #2c4c79;
    }
    .participant-table tr:hover td {
      background-color: #1b3d6d;
      transition: background-color 0.3s ease;
    }
    .participant-table .label {
      font-weight: 600;
      color: #FFFFFF;
      width: 35%;
    }
    .participant-table .value {
      color: #EEEEEE;
    }

    @media (max-width: 600px) {
      .participant-table th, .participant-table td {
        padding: 12px 15px;
        font-size: 0.95rem;
      }
      .participant-table .label {
        width: 40%;
      }
    }
  </style>