/* Recipe Page Specific Styles */

.recipe {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333;
}

.recipe:last-child {
    border-bottom: none;
}

.recipe h3 {
    margin-top: 0;
    border-bottom: none;
}

.recipe-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

.ingredients,
.instructions {
    flex: 1;
    min-width: 250px;
    background-color: #2c2c2c;
    padding: 15px;
    border-radius: 8px;
}

.ingredients h4,
.instructions h4 {
    color: #008800;
    margin-top: 0;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
}

.ingredients ul,
.instructions ol {
    padding-left: 20px;
}

.ingredients li {
    background-color: transparent;
    padding: 0;
    margin-bottom: 8px;
}

.instructions li {
    background-color: transparent;
    padding: 0;
    margin-bottom: 12px;
}

.ingredients li:hover,
.instructions li:hover {
    background-color: transparent;
}

@media (max-width: 600px) {
    .recipe-section {
        flex-direction: column;
    }
}
