body {
  font-family: Arial, sans-serif;
  background: #fbeee0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.recipe-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
  text-align: center;
}

.recipe-img {
  width: 100%;
  border-radius: 15px;
  transition: transform 0.3s ease;
}
.recipe-img:hover {
  transform: scale(1.05);
}

.title {
  margin-bottom: 10px;
  color: #5a2a27;
}

.info {
  margin: 10px 0;
  font-size: 14px;
}

ul, ol {
  text-align: left;
  margin-top: 10px;
}

li {
  padding: 5px;
  transition: background 0.3s;
}
li:hover {
  background: #ffe4c4;
  border-radius: 8px;
}

.hidden {
  display: none;
}

.toggle-btn, .action-btn {
  margin-top: 10px;
  padding: 10px 15px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  background: #8b5e3c;
  color: white;
  transition: background 0.3s;
}
.toggle-btn:hover, .action-btn:hover {
  background: #5a2a27;
}

.progress {
  background: #ddd;
  border-radius: 10px;
  margin: 15px 0;
  height: 10px;
  width: 100%;
}
#progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ff9966, #ff5e62);
  border-radius: 10px;
  transition: width 0.5s ease;
}

/* Responsive */
@media (max-width: 600px) {
  .recipe-card {
    padding: 15px;
  }
  .title {
    font-size: 20px;
  }
}
