/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
  background-color: #f4f4f4;
}

/* Header */
header {
  background-color: #ff7043;
  color: white;
  padding: 20px;
}

/* Recipe Layout */
.recipe-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px;
}

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

.recipe-details ul {
  list-style-type: none;
  padding: 0;
}

.recipe-details li {
  background: white;
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

/* Steps */
.steps {
  margin: 20px auto;
  max-width: 600px;
}

.step {
  background: white;
  padding: 10px;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.step h3 {
  margin: 0;
}

.step p {
  display: none;
}

/* Audio and Timer */
.audio-timer {
  margin: 20px;
}

input {
  padding: 10px;
  width: 150px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

button {
  background-color: #ff7043;
  color: white;
  border: none;
  padding: 10px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
}

button:hover {
  background-color: #bf360c;
}
