/* === BASISLAYOUT === */
body {
  font-family: sans-serif;
  background: #ffffff;
  color: #333;
  margin: 0;
  padding: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* === RØD STREG OVER/UNDER H1 === */
header h1 {
  text-align: center;
  font-size: 2rem;
  margin: 2rem 0 1.5rem;
  padding: 0.5rem 0;
  border-top: 2px solid #d62828;
  border-bottom: 2px solid #d62828;
  color: #000;
}

/* === RECIPE IMAGE === */
.recipe-image {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
  margin: 1rem auto 2rem;
  border-radius: 4px;
}

/* === SEKTIONER === */
section {
  margin-bottom: 2rem;
}

/* === PRINT-KNAPPER === */
.print-buttons {
  text-align: center;
  margin-top: 2rem;
}

.print-buttons button {
  margin: 0.5rem;
  padding: 0.6rem 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  background: #f9f9f9;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.print-buttons button:hover {
  background: #eee;
}

/* === RATINGBOX === */
.rating {
  text-align: center;
  margin-top: 2rem;
}

.rating h2 {
  margin-bottom: 0.5rem;
}

.rating .star {
  font-size: 2rem;
  color: #ccc;
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s;
}

.rating .star.active {
  color: #f5c518;
}

.rating .star.half::before {
  content: '★';
  position: absolute;
  color: #f5c518;
  width: 50%;
  overflow: hidden;
}

.rating .star.hover {
  color: #f5c518;
}

.rating-message {
  margin-top: 0.5rem;
  font-weight: bold;
  color: #333;
  font-size: 0.95rem;
}

/* === STATISTIK-FELTER TIL HØJRE === */
.visits,
.updated,
.created {
  text-align: right;
  font-size: 0.9rem;
  color: #666;
  margin-top: 1rem;
  line-height: 1.5;
}

/* === SKJUL BILLEDE VED "PRINT KUN OPSKRIFT" === */
body.print-friendly img {
  display: none !important;
}

/* === SKJUL RATING VED "PRINT KUN OPSKRIFT" === */
body.print-friendly .rating {
  display: none !important;
}
