.table-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 10px;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #ddd;
  }

  thead {
    background: linear-gradient(90deg, #F05C2B, #AD2627);
    color: #fff;
  }

  th, td {
    border: 1px solid #ddd;
    padding: 14px;
    text-align: left;
    vertical-align: top;
    font-size: 14px;
  }

  th {
    font-weight: 600;
  }

  tbody tr:nth-child(even) {
    background: #fafafa;
  }

  tbody tr:hover {
    background: rgba(240, 92, 43, 0.08);
  }

  /* STACK ONLY ON MOBILE */
  @media (max-width: 600px) {
    table, thead, tbody, th, td, tr {
      display: block;
      width: 100%;
    }

    thead {
      display: none;
    }

    tr {
      margin-bottom: 15px;
      border: 1px solid #ddd;
      border-left: 4px solid #F05C2B;
      background: #fff;
    }

    td {
      border: none;
      border-bottom: 1px solid #eee;
      padding: 12px;
    }

    td:last-child {
      border-bottom: none;
    }

    td::before {
      content: attr(data-label);
      display: block;
      font-weight: bold;
      color: #AD2627;
      margin-bottom: 5px;
      font-size: 13px;
    }
  }