@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
body {
  margin: 0;
  padding: 40px 24px;
  font-family: 'Inter', sans-serif;
  background: #f0f0f0;
  color: #333;
}
.wrap {
  max-width: 800px;
  margin: 0 auto;
}
h1 {
  font-size: 32px;
  margin-bottom: 24px;
  text-align: center;
  color: #111;
}
.search-box {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.search-box input {
  width: 100%;
  max-width: 400px;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
th, td {
  padding: 12px 16px;
  vertical-align: middle;
}
th {
  font-size: 18px;
  text-transform: uppercase;
  color: #111;
  text-align: left;
  background: #e0e0e0;
}
tbody tr:nth-child(odd) {
  background: #f9f9f9;
}
tbody tr:nth-child(even) {
  background: #e8e8e8;
}
td.program {
  font-size: 16px;
  font-weight: 600;
}
td.size {
  font-weight: bold;
  width: 80px;
  color: #444;
  text-align: center;
  font-size: 14px;
}
td.size span {
  font-weight: normal;
  color: #333;
  margin-left: 2px;
}
td.btn-cell {
  width: 150px;
  text-align: center;
}
a.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 6px 12px;
  background: #398FDB;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: background 0.3s;
}
a.btn:hover {
  background: #4338ca;
}
.btn svg {
  width: 16px;
  height: 16px;
  fill: white;
}
@media (max-width:600px) {
  table, thead, tbody, th, td, tr { display: block; }
  th { display: none; }
  td { display: flex; justify-content: space-between; padding: 10px; background: #fff; margin-bottom: 10px; border-radius: 6px; }
  td.btn-cell { justify-content: flex-end; margin-top: 6px; width: 100%; }
  td.size { width: auto; text-align: left; font-size: 16px; }
}