 /* Basic table styles */
  table {
    width: 100%;
    border-collapse: collapse;
  }

  th, td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
  }

  /* Responsive styles for small screens */
  @media (max-width: 600px) {
    table, thead, tbody, tr, th, td {
      display: block;
    }

    thead {
      display: none; /* Hide header on mobile */
    }

    tr {
      margin-bottom: 15px;
    }

    td {
      position: relative;
      padding-left: 50%;
      border: none;
      border-bottom: 1px solid #ddd;
    }

    td::before {
      position: absolute;
      top: 12px;
      left: 12px;
      width: 45%;
      padding-right: 10px;
      white-space: nowrap;
      font-weight: bold;
      content: attr(data-label);
    }
  }