/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* Alpine cloak */
[x-cloak] { display: none !important; }

/* Email list row hover */
.email-item { transition: background 0.15s ease, transform 0.15s ease; }
.email-item:hover { background-color: #f1f5f9; transform: translateX(3px); }

/* Article card hover */
.article-card { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.article-card:hover { transform: translateY(-2px); box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1); }

/* Admin sidebar active link */
.admin-nav-link { transition: background 0.15s, color 0.15s; }
.admin-nav-link.active,
.admin-nav-link:hover { background-color: #eff6ff; color: #3b82f6; }

/* Admin table row hover */
.admin-table tbody tr:hover td { background-color: #f8fafc; }

/* Prose article content */
.article-content h1,.article-content h2,.article-content h3 { font-weight: 700; margin: 1em 0 0.5em; }
.article-content h1 { font-size: 1.5rem; }
.article-content h2 { font-size: 1.25rem; }
.article-content p { margin-bottom: 0.75em; line-height: 1.7; }
.article-content a { color: #3b82f6; text-decoration: underline; }
.article-content ul,.article-content ol { padding-left: 1.5em; margin-bottom: 0.75em; }
.article-content li { margin-bottom: 0.25em; }
.article-content code { background: #f1f5f9; padding: 0.1em 0.4em; border-radius: 4px; font-size: 0.875em; }
.article-content pre { background: #1e293b; color: #e2e8f0; padding: 1em; border-radius: 8px; overflow-x: auto; margin-bottom: 1em; }
