@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.3s ease-out forwards;
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

#sidebar::-webkit-scrollbar-thumb {
    background: #475569;
}
#sidebar::-webkit-scrollbar-thumb:hover {
    background: #64748b;
}

.prose p {
    margin-bottom: 0.5em;
    margin-top: 0;
}
.prose p:last-child {
    margin-bottom: 0;
}
.prose pre {
    background-color: #1e293b;
    color: #f8fafc;
    padding: 1em;
    border-radius: 0.5rem;
    overflow-x: auto;
    margin: 1em 0;
}
.prose code {
    background-color: #f1f5f9;
    padding: 0.2em 0.4em;
    border-radius: 0.25rem;
    font-size: 0.875em;
}
.prose pre code {
    background-color: transparent;
    padding: 0;
    color: inherit;
}
