@media (max-width: 767.98px) {
  .container {
    max-width: 991.98px !important;
  }
}
@media (max-width: 991.98px) {
  .container {
    max-width: 950px !important;
  }
}
.recipe .ingredients ul {
  padding-left: 1em;
  text-indent: -1em;
}
.recipe .directions ol {
  list-style-position: inside;
  padding-left: 0;
}
.recipe .directions ol li {
  margin-bottom: 0.75rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  transition: opacity 0.3s ease;
}
.recipe .directions ol li p {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.recipe .directions ol li p:last-child {
  margin-bottom: 0;
}
.recipe .directions ol li.completed {
  opacity: 0.4;
  text-decoration: line-through;
}
.recipe .directions ol li input[type=checkbox] {
  margin-top: 0.3rem;
  flex-shrink: 0;
  cursor: pointer;
  border: 2px solid #6c757d;
}
.recipe .directions ol li input[type=checkbox]:checked {
  background-color: #198754;
  border-color: #198754;
}
.recipe .directions ol li input[type=checkbox]:hover {
  border-color: #495057;
}
.recipe .directions ol li .step-content {
  flex: 1;
}
.recipe .directions ol li::marker {
  font-weight: bold;
}
.recipe .directions .recipe-timer {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.recipe .directions .recipe-timer .timer-display {
  font-weight: 600;
  font-family: monospace;
  min-width: 3rem;
  text-align: center;
}
.recipe .directions .recipe-timer .timer-display.timer-running {
  color: #0d6efd;
}
.recipe .directions .recipe-timer .timer-display.timer-finished {
  color: #dc3545;
  animation: pulse 1s infinite;
}
.recipe .directions .recipe-timer .timer-btn {
  color: #6c757d;
  font-size: 1.5rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
}
.recipe .directions .recipe-timer .timer-btn:hover {
  opacity: 0.7;
}
.recipe .directions .recipe-timer .timer-btn:active {
  transform: scale(0.9);
}
.recipe .directions .recipe-timer .timer-btn.timer-start {
  color: #198754;
}
.recipe .directions .recipe-timer .timer-btn.timer-pause {
  color: #ffc107;
}
.recipe .directions .recipe-timer .timer-btn.timer-reset {
  color: #dc3545;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/*# sourceMappingURL=styles.css.map */