    body {
      margin: 0;
      padding: 1.4rem;
      background: #f1f3f5;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    .container {
      max-width: 650px;
      margin: auto;
    }

    h1 {
      text-align: center;
      margin-bottom: 1rem;
      font-size: 1.4rem;
      color: #222;
      font-weight: 700;
    }

    /* BLOKY */
    details {
      background: #fff;
      border-radius: 1rem;
      margin-bottom: 1rem;
      box-shadow: 0 3px 8px rgba(0,0,0,0.06);
      overflow: hidden;
      border: 1px solid #ececec;
      transition: 0.2s ease;
    }

    summary {
      cursor: pointer;
      padding: 1rem;
      font-size: 1rem;
      font-weight: 600;
      display: flex;
      justify-content: space-between;
      align-items: center;
      list-style: none;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    .arrow {
      transition: transform 0.25s ease;
      font-size: 0.9rem;
      opacity: 0.6;
    }

    details[open] .arrow {
      transform: rotate(90deg);
      opacity: 0.9;
    }

    /* Odkazy */
    .links a {
      display: block;
      padding: 0.85rem 1.1rem;
      text-decoration: none;
      color: #333;
      font-size: 0.95rem;
      border-bottom: 1px solid #f0f0f0;
    }

    .links a:last-child {
      border-bottom: none;
    }

    .links a:hover {
      background: #f8f9fa;
    }

.links.links-forecast {
  padding: 0.85rem 1.1rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #374151;
}

.links.links-forecast #forecast-content {
  white-space: normal;
}
.forecast-block {
  margin-bottom: 1.5rem;
  padding: 1rem 1.2rem;
  border-left: 4px solid #2b6cb0;
  background: #f7fafc;
  border-radius: 6px;
}

.forecast-main-headline {
  margin: 0 0 .4rem 0;
  font-size: 1.1rem;
}

.forecast-meta {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: .6rem;
}

.forecast-meta span + span::before {
  content: "•";
  margin: 0 .4rem;
}

.forecast-part {
  margin-top: .6rem;
}

.forecast-headline {
  margin: .6rem 0 .2rem;
  font-size: .95rem;
  color: #1a365d;
}

.forecast-text {
  margin: 0;
  line-height: 1.5;
}


