/* Recipe-specific styles */
.recipe {
    margin: 40px 0;
}

.recipe-header {
    border-bottom: 1px dashed var(--accent);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.recipe h2 {
    font-size: 2em;
    margin-bottom: 15px;
    font-weight: normal;
}

.recipe-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 0.9em;
    color: var(--secondary);
}

.recipe-intro {
    margin: 30px 0;
    font-style: italic;
    color: var(--primary);
}

.recipe h3 {
    font-size: 1.3em;
    margin: 30px 0 15px;
    color: var(--primary);
    font-weight: normal;
}

.recipe ul {
    list-style: none;
    padding: 0;
}

.recipe ul li {
    margin: 10px 0;
    padding-left: 20px;
}

.recipe ul li::before {
    content: "- ";
    margin-left: -20px;
    color: var(--gray);
}

.qty {
    color: var(--white);
    font-weight: normal;
    margin-right: 10px;
}

.recipe em {
    color: var(--secondary);
    font-style: normal;
}

.recipe ol {
    counter-reset: steps;
    list-style: none;
    padding: 0;
}

.recipe ol li {
    counter-increment: steps;
    margin: 20px 0;
    padding-left: 40px;
    position: relative;
}

.recipe ol li::before {
    content: counter(steps) ".";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.terminal-output {
    background: var(--black);
    padding: 20px;
    border: 1px solid var(--accent);
    margin: 15px 0;
}

.terminal-output p {
    margin: 5px 0;
    color: var(--secondary);
}

.recipe-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px dashed var(--accent);
    font-size: 0.9em;
    color: var(--gray);
    text-align: center;
}

.recipe a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px dotted var(--primary);
}

.recipe a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}