/* Grundfarben basierend auf dem Logo */
:root {
  --primary-blue: #2a7fba;
  --secondary-green: #5cbf7c;
  --light-gray: #f5f5f5;
  --text-dark: #333;
  --accent: #e0f7f1;
}

/* Allgemeine Einstellungen */
body {
  font-family: "Segoe UI", sans-serif;
  background-color: var(--light-gray);
  color: var(--text-dark);
  margin: 0;
  padding: 0;
}

center {
  display: block;
  margin: auto;
  max-width: 960px;
  padding: 20px;
}

/* Kopfbereich und Navigation */
table:first-of-type {
  width: 100%;
  background-color: var(--accent);
  color: var(--primary-blue);
  border-collapse: collapse;
  margin-bottom: 20px;
}

table:first-of-type th {
  padding: 10px;
  font-size: 1rem;
}

table:first-of-type a {
  color: var(--primary-blue);
  text-decoration: none;
  font-weight: bold;
}

table:first-of-type a:hover {
  text-decoration: underline;
}

/* Überschriften */
h1 {
  color: var(--primary-blue);
  font-size: 2em;
  margin-bottom: 10px;
}

h2 {
  color: var(--secondary-green);
  border-bottom: 2px solid var(--secondary-green);
  padding-bottom: 5px;
  margin-top: 30px;
}

h3 {
  color: var(--primary-blue);
  margin-top: 20px;
}

/* Tabellen für Öffnungszeiten und Team */
table[border="1"] {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  background-color: white;
}

table[border="1"] th,
table[border="1"] td {
  border: 1px solid #ccc;
  padding: 8px;
  text-align: center;
}

table[border="1"] th {
  background-color: var(--accent);
  color: var(--text-dark);
}

/* Team-Tabelle */
table img {
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

/* Footer Links */
a[href*="impressum"],
a[href*="datenschutz"] {
  display: inline-block;
  margin-top: 20px;
  color: var(--primary-blue);
  text-decoration: none;
}

a[href*="impressum"]:hover,
a[href*="datenschutz"]:hover {
  text-decoration: underline;
}
