/*
 * Small supplemental rules for things Tailwind utility classes don't cover
 * directly. The bulk of the design system lives in Tailwind (loaded via CDN
 * in views/header.php) — this file only fills gaps.
 */

::selection {
    background: rgba(88, 101, 242, 0.35);
}

/* Rendered post bodies (see render_post_body()) */
.prose :where(ul) {
    list-style: disc;
    padding-left: 1.25rem;
}

.prose :where(a) {
    color: #5865f2;
    text-decoration: underline;
}

.prose :where(code) {
    background: rgba(148, 163, 184, 0.18);
    border-radius: 0.25rem;
    padding: 0.1rem 0.35rem;
    font-size: 0.875em;
}
