/* Custom additions on top of Tailwind CDN */

@keyframes pulse-once {
    0%   { opacity: 0; transform: translateY(-8px); }
    10%  { opacity: 1; transform: translateY(0); }
    90%  { opacity: 1; }
    100% { opacity: 0; transform: translateY(-8px); }
}
.animate-pulse-once { animation: pulse-once 4s ease-in-out forwards; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #0f172a; }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #475569; }

code {
    background: rgba(15, 23, 42, 0.7);
    padding: 1px 6px;
    border-radius: 3px;
    font-size: 0.85em;
}
