<style>
  .ceu-table-wrapper {
    background: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow:
      0 6px 16px rgba(0, 0, 0, 0.12),
      0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 0; /* remove internal white padding to fix header overlay */
    overflow: hidden;
    font-family: "Avenir", Arial, sans-serif;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
  }

  /* Optional hover lift */
  .ceu-table-wrapper:hover {
    box-shadow:
      0 10px 30px rgba(0, 0, 0, 0.18),
      0 12px 35px rgba(0, 0, 0, 0.10);
    transform: translateY(-3px);
  }

  .ceu-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 14px;
    overflow: hidden;
  }

  /* HEADER COLOR FIX */
  .ceu-table thead th {
    background-color: #ea9f4e !important;
    color: #fff !important;
    font-weight: 700;
    text-align: left;
    padding: 18px 16px;
    font-size: 16px;
    border: none !important;
  }

  /* TABLE BODY */
  .ceu-table tbody td {
    padding: 18px 16px;
    border-bottom: 1px solid #f0f0f0 !important;
    vertical-align: middle;
    font-size: 15px;
    color: #1f1f1f;
    background-color: #fff !important;
  }

  .ceu-table tbody tr:last-child td {
    border-bottom: none !important;
  }

  .ceu-table tbody tr:hover td {
    background-color: #fee7c6 !important;
    transition: 0.2s ease-in-out;
  }

  /* CEU BADGE */
  .ceu-badge {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 100px;
    height: 40px;
    background-color: #3F74FA;
    color: white;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(63, 116, 250, 0.35);
    text-align: center;
  }

  .ceu-badge:hover {
    background-color: #1f0099;
    transform: translateY(-1px);
    transition: 0.2s ease;
  }

  .ceu-col {
    text-align: center;
    width: 140px;
  }

  @media (max-width: 768px) {
    .ceu-table thead {
      display: none;
    }
    .ceu-table, .ceu-table tbody, .ceu-table tr, .ceu-table td {
      display: block;
      width: 100%;
    }
    .ceu-table td {
      border: none;
      padding: 10px 0;
    }
    .ceu-badge {
      margin-top: 8px;
    }
  }
</style>
