/* =========================
   RESET & BASE
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Arial, sans-serif;
  background: #ffffff;
  color: #111;
  line-height: 1.6;
}

/* =========================
   HEADER
========================= */
.site-header {
  padding: 20px 16px;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.site-header h1 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
}

.subtitle {
  margin-top: 4px;
  font-size: 14px;
  color: #666;
}

/* =========================
   CONTAINER
========================= */
.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
}

/* =========================
   INFO / UPDATE TIME
========================= */
.info {
  font-size: 13px;
  color: #666;
  margin-bottom: 16px;
}

/* =========================
   SECTION
========================= */
.section {
  margin-bottom: 32px;
}

.section h2 {
  font-size: 18px;
  margin: 24px 0 12px;
  font-weight: 600;
}

.section h3 {
  font-size: 15px;
  margin: 16px 0 8px;
  font-weight: 600;
}

/* =========================
   TABLE
========================= */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  border: 1px solid #eee;
  border-radius: 8px;
  background: #fff;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 420px;
}

.price-table th,
.price-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
  text-align: left;
  white-space: nowrap;
}

.price-table th {
  background: #fafafa;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.price-table td {
  font-size: 14px;
}

.price-table tr:last-child td {
  border-bottom: none;
}

/* =========================
   SOURCE TEXT
========================= */
.source {
  margin-top: 6px;
  font-size: 12px;
  color: #777;
}

/* =========================
   FOOTER
========================= */
.site-footer {
  text-align: center;
  font-size: 12px;
  color: #777;
  padding: 20px 10px;
  border-top: 1px solid #eee;
}

/* =========================
   UTIL
========================= */
.hidden {
  display: none;
}

/* =========================
   MOBILE TWEAK
========================= */
@media (max-width: 480px) {
  .site-header h1 {
    font-size: 20px;
  }

  .section h2 {
    font-size: 17px;
  }

  .price-table th,
  .price-table td {
    padding: 9px 10px;
    font-size: 13px;
  }
}