/* File: public/css/style.css */
body {
    font-family: 'Inter', sans-serif;
}

/* Styling untuk konten dari editor teks (Quill) */
.prose h1, .prose h2, .prose h3 {
    margin-bottom: 0.75em;
}
.prose p {
    line-height: 1.6;
    margin-bottom: 1em;
}
.prose ul, .prose ol {
    margin-left: 1.5em;
    margin-bottom: 1em;
}
.prose li {
    margin-bottom: 0.5em;
}
.prose a {
    color: #4f46e5; /* indigo-600 */
    text-decoration: none;
}
.prose a:hover {
    text-decoration: underline;
}
.prose blockquote {
    border-left: 4px solid #e5e7eb; /* gray-200 */
    padding-left: 1em;
    font-style: italic;
    color: #6b7280; /* gray-500 */
}
