body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 20px;
  background: #f9fafb;
  color: #333;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

/* Table styles */
table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

th,
td {
  padding: 14px 16px;
  text-align: left;
}

th {
  background: #f3f4f6;
  font-weight: 600;
}

tr:nth-child(even) {
  background: #fafafa;
}

a {
  color: #2563eb;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

/* Chips for tags */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.chip {
  background: #e0e7ff;
  color: #3730a3;
  padding: 4px 10px;
  font-size: 0.85rem;
  border-radius: 9999px;
  white-space: nowrap;
}

/* Card layout for small screens */
.cards {
  display: none;
  gap: 16px;
  flex-direction: column;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.card p {
  margin: 0 0 10px;
  font-size: 0.95rem;
  color: #555;
}

/* Responsive switch */
@media (max-width: 768px) {
  table {
    display: none;
  }

  .cards {
    display: flex;
  }
}


