<style>
  header {
    max-width: 1100px;
    margin: 0 auto 2.5rem;
    text-align: center;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 1.5rem;
  }

  header h1 {
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 2.4rem;
    color: var(--accent);
    letter-spacing: 0.02em;
    margin-bottom: 0.4rem;
  }

  header p {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 300;
  }

  .container { max-width: 1100px; margin: 0 auto; }

  .city-section { margin-bottom: 3rem; }

  .city-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    padding: 0.6rem 1rem;
    border-radius: 4px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.03em;
  }

  .city-bs  .city-header { background: #f0e8da; border-left: 5px solid var(--accent);  color: var(--accent); }
  .city-wob .city-header { background: #e8f0da; border-left: 5px solid var(--accent2); color: var(--accent2); }
  .city-wf  .city-header { background: #dae8f0; border-left: 5px solid var(--accent3); color: var(--accent3); }
  .city-sz  .city-header { background: #f5e8f0; border-left: 5px solid #6b2c5a;        color: #6b2c5a; }

  table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }

  thead tr { background: var(--text); color: #000; }

  tr:last-child td { border-bottom: none; }
  tr:hover td { background: #faf6ee; }

  .name { font-weight: 600; color: var(--text); background: #FFC0CB; }
  .sub  { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; }

  /* Spaltenbezeichnung: im Desktop unsichtbar, auf Mobilgeräten sichtbar */
  .label {
    display: none;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted);
    margin-bottom: 0.15rem;
  }

  .price-tag {
    display: inline-block;
    padding: 0.15rem 0.5rem;
    border-radius: 3px;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
  }
  .free  { background: #e6f4e7; color: var(--free); }
  .paid  { background: #e6eef4; color: var(--paid); }
  .mixed { background: #fef3e2; color: #8b5a00; }

  .hours { font-size: 0.82rem; color: var(--muted); }

  a.web-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--accent);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    border-bottom: 1px dotted var(--accent);
    transition: color 0.2s;
  }
  a.web-link:hover { color: #5a2d0c; }

  .note {
    background: #fff8ec;
    border: 1px solid #e8d8b8;
    border-radius: 6px;
    padding: 0.7rem 1rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #6b4d1a;
  }
  .note strong { color: #8b4513; }

  .col-name  { width: 35%; }
  .col-desc  { width: 50%; }
  .col-price { width: 5%; }
  .col-hours { width: 5%; }
  .col-web   { width: 5%; }

@media (max-width: 700px) {
    .meine-tabelle,
    .meine-tabelle thead,
    .meine-tabelle tbody,
    .meine-tabelle th,
    .meine-tabelle td,
    .meine-tabelle tr { display: block; }

    .meine-tabelle thead { display: none; }

    .meine-tabelle td { border-bottom: none; padding: 0.3rem 0.8rem; }
    .meine-tabelle td:first-child { padding-top: 0.8rem; }
    .meine-tabelle td:last-child  { padding-bottom: 0.8rem; border-bottom: 1px solid var(--border); }

    .meine-tabelle .label { display: block; }
}
</style>