body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #1e1e1e;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

h1, h2, h3 {
    color: #008800;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-top: 20px;
}

h1 {
    text-align: center;
}

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

li {
    background-color: #2c2c2c;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

li:hover {
    background-color: #3a3a3a;
}

a {
    color: #03dac6;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.note {
    background-color: #2c2c2c;
    padding: 15px;
    border-left: 4px solid #008800;
    margin-bottom: 15px;
    border-radius: 5px;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    font-size: 0.8em;
    color: #888;
}

footer a {
    color: #03dac6;
}

/* --- Recipe Page 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; /* Ensures columns don't get too narrow on small screens */
    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;
    }
}

