/* Custom Styles & Visual Hierarchy */
body {
    background-color: #faf8f5;
    color: #1a1a1a;
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: #faf8f5;
}
::-webkit-scrollbar-thumb {
    background: #8fe0a0;
    border-radius: 3px;
}

/* Base Animations */
@keyframes pulse-subtle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: .85; transform: scale(0.99); }
}

.animate-pulse-subtle {
    animation: pulse-subtle 2s infinite ease-in-out;
}

/* Markdown Rendering Engine Prose Style (Marked.js Output) - Tema Hijau Gojek */
.recipe-prose h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #007a0d;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid #c8f0cb;
    padding-bottom: 0.5rem;
}

.recipe-prose h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    border-left: 4px solid #00aa13;
    padding-left: 0.75rem;
}

.recipe-prose ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.recipe-prose ol {
    list-style-type: decimal;
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.recipe-prose li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.recipe-prose p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.recipe-prose strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Styling blockquote/Callout Box untuk Tips Koki */
.recipe-prose blockquote,
.recipe-prose p:last-child {
    background-color: #e9f9ea;
    border-left: 4px solid #007a0d;
    padding: 1rem;
    border-radius: 0 0.75rem 0.75rem 0;
    margin-top: 1.5rem;
    font-style: italic;
}
