/* Global */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #fff;
}

.search-section {
  width: 100%;
}

/* Sticky search */
header {
  top: 0;
  background: transparent;
  padding: 12px;
  box-shadow: none;
  z-index: 0;
  text-align: left;
}

input#search {
  padding: 12px;
  width: 75%;
  max-width: 600px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #ccc;
  display: block;
  margin: 0 auto;   /* centers only the search */
}

/* Page title */
.search-title {
  margin: 15px 0;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
}

/* Table */
table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 10px;
  background: #fff;
}

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

th {
  background: #f2f2f2;
}

/* Mobile cards */
.cards {
  display: none;
  padding: 10px;
}

.card {
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.label { font-size: 12px; color: #666; }
.value { font-size: 15px; margin-bottom: 6px; font-weight: 500; }

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