/* Default styles for desktop */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

thead th {
  text-align: left;
  padding: 10px;
  font-size: 16px;
  background-color: #f0f0f0;
}

tbody td {
  padding: 10px;
}

ul {
  margin: 0;
  padding-left: 20px;
  list-style-type: square;
}

/* Responsive styles for smaller devices */
@media (max-width: 768px) {
  table {
    width: 100%;
    font-size: 14px;
  }

  thead {
    display: none; /* Hide table headers on smaller devices */
  }

  tbody td {
    display: block;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #ddd;
    padding: 10px;
  }

  tbody td::before {
    content: attr(data-label); /* Add labels for table rows */
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
  }

  ul {
    padding-left: 15px;
  }
}
