
/* Grundlayout */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background-color: #f5f5f5;
  color: #222;
}

/* Kopfbereich mit Logo */
.site-header {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 20px 0;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Logo "WW" */
.logo-box {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #009688;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-box span {
  font-size: 28px;
  font-weight: 800;
  color: #009688;
}

.site-title-group h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
}

.site-title-group p {
  margin: 2px 0 0 0;
  font-size: 13px;
  color: #666;
}

/* Navigation */
.site-nav {
  background-color: #009688;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
}

.site-nav li a {
  display: block;
  padding: 10px 0;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.site-nav li a:hover {
  background-color: #00786b;
}

.site-nav li a[aria-current="page"] {
  font-weight: 700;
  border-bottom: 2px solid #ffffff;
}

/* Hauptinhalt */
.main-wrapper {
  max-width: 900px;
  margin: 24px auto 40px auto;
  padding: 0 16px 40px 16px;
  background-color: #ffffff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

/* Breadcrumb (optional, sehr dezent) */
.breadcrumb {
  font-size: 12px;
  color: #999;
  padding-top: 16px;
  margin-bottom: 8px;
}

.breadcrumb a {
  color: #999;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Inhaltstypografie */
main h1 {
  font-size: 26px;
  margin: 8px 0 8px 0;
}

main h2 {
  font-size: 20px;
  margin-top: 24px;
}

main h3 {
  font-size: 17px;
  margin-top: 18px;
}

main p {
  line-height: 1.6;
  margin: 8px 0;
  font-size: 15px;
}

main ul {
  padding-left: 20px;
  font-size: 15px;
}

/* Box für Analyse des Tages (Meta) */
.analysis-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}

.tag {
  background-color: #e0f2f1;
  color: #00695c;
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 12px;
  text-transform: uppercase;
}

/* Beispiel-Tabelle für Quoten */
.odds-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}

.odds-table th,
.odds-table td {
  border: 1px solid #e0e0e0;
  padding: 8px;
  text-align: center;
}

.odds-table th {
  background-color: #f1f1f1;
}

/* Hinweisbox */
.info-box {
  margin-top: 20px;
  padding: 10px 12px;
  border-left: 4px solid #009688;
  background-color: #f1fdfb;
  font-size: 13px;
  color: #444;
}

/* Hinweis für flexible Tagesaktualisierung */
.daily-note {
  background-color: #f1fdfb;
  border-left: 4px solid #009688;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  margin-top: 10px;
}

/* Footer */
.site-footer {
  text-align: center;
  font-size: 13px;
  color: #777;
  padding: 16px;
}

/* Responsiv */
@media (max-width: 700px) {
  .header-inner {
    flex-direction: row;
    align-items: center;
    padding: 0 16px;
  }

  .site-nav ul {
    flex-wrap: wrap;
    padding: 0 16px;
  }

  .main-wrapper {
    margin-top: 16px;
  }
}


Sent from Yahoo Mail for iPhone
