/* Recipe Steps Styling */
.recipe-steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.recipe-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #ff9898;
    transition: all 0.3s ease;
}

.recipe-step:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.step-number {
    counter-increment: step-counter;
    background: linear-gradient(135deg, #ff9898, #ffd586);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(255, 152, 152, 0.3);
}

.step-number::before {
    content: counter(step-counter);
}

.step-content {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: #2c3e50;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .recipe-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
}
