/* Tabelle Styling */
.table-container {
  overflow-x: auto;
  margin: 2rem 0;
  border: 1px solid #eee;
  border-radius: 8px;
}

.temperature-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.temperature-table th {
  background: #f9f9f9;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  border-bottom: 2px solid #eee;
}

.temperature-table td {
  padding: 1rem;
  border-bottom: 1px solid #eee;
}

/* Farbige Zeilen für Temperaturstufen */
.temperature-table tr.safe td:first-child {
  border-left: 4px solid #4caf50;
  background-color: #f8fff8;
}

.temperature-table tr.warning td:first-child {
  border-left: 4px solid #ff9800;
  background-color: #fff8f0;
}

.temperature-table tr.danger td:first-child {
  border-left: 4px solid #ff5722;
  background-color: #fff0f0;
}

.temperature-table tr.destroyed td:first-child {
  border-left: 4px solid #9e9e9e;
  background-color: #f9f9f9;
}

/* Boxen */
.tip-box, .cta-box {
  background: #fff8e1;
  border-left: 4px solid #ffb300;
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.cta-box {
  background: #e8f5e9;
  border-left-color: #4caf50;
  text-align: center;
}

/* Related Articles */
.related-articles {
  margin: 3rem 0;
  padding-top: 2rem;
  border-top: 2px solid #eee;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.related-card {
  background: #f9f9f9;
  padding: 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  transition: all 0.3s;
  display: block;
}

.related-card:hover {
  background: #fff8e1;
  border-color: #ffb300;
  transform: translateY(-3px);
}

.related-card h4 {
  margin-top: 0;
  color: #333;
  margin-bottom: 0.5rem;
}

.related-card p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

/* Button */
.button {
  display: inline-block;
  background: #ffb300;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: background 0.3s;
}

.button:hover {
  background: #ff8f00;
}

/* Lead Paragraph */
.lead {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.5rem;
}
