:root {
  --bg-color: #121212;
  --text-color: #e0e0e0;
  --accent-color: #ffb300;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background: #8e8888;
  border-bottom: 1px solid #333;
}

.recipe-title {
  margin: 0;
  font-size: 1.8rem;
}

.multiplier label {
  margin-right: 0.5rem;
}

.multiplier select {
  padding: 0.3rem;
  background: #222;
  color: var(--text-color);
  border: 1px solid #333;
}

.image-gallery {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  overflow-x: auto;
}

.image-gallery img {
  max-width: 300px;
  border-radius: 8px;
}

.ingredients, .instructions {
  padding: 1rem;
}

.ingredients h2, .instructions h2 {
  color: var(--accent-color);
}

ul {
  list-style: disc;
  padding-left: 1.5rem;
}

.footer {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #333;
  background: #1e1e1e;
}
