/* styles.css */

.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #334155;
    border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #F59E0B;
}

/* Base structural transitions */
* {
    transition-property: background-color, border-color, color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 200ms;
}

/* Markdown Styles */
.markdown a {
    color: #FBBF24;
    text-decoration: none;
    border-bottom: 1px dotted #F59E0B;
}

.markdown a:hover {
    color: #FDE68A;
    border-bottom: 1px solid #FDE68A;
}

.markdown p {
    margin-bottom: 1.2em;
}

.markdown h1,
.markdown h2,
.markdown h3,
.markdown h4 {
    color: #F8FAFC;
    font-weight: 700;
    margin-top: 1.5em;
    margin-bottom: 0.75em;
}

.markdown h1 {
    font-size: 1.75em;
    border-bottom: 1px solid #334155;
    padding-bottom: 0.3em;
}

.markdown h2 {
    font-size: 1.5em;
    border-bottom: 1px solid #334155;
    padding-bottom: 0.3em;
}

.markdown h3 {
    font-size: 1.25em;
}

.markdown code {
    background: rgba(245, 158, 11, 0.1);
    color: #FDE68A;
    padding: 0.2em 0.4em;
    border-radius: 4px;
    font-family: 'Fira Code', monospace;
    font-size: 0.85em;
}

.markdown pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

.markdown pre {
    background: #0F172A;
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin-bottom: 1.5em;
    border: 1px solid #334155;
}

.markdown ul {
    list-style-type: disc;
    padding-left: 24px;
    margin-bottom: 1.2em;
}

.markdown ol {
    list-style-type: decimal;
    padding-left: 24px;
    margin-bottom: 1.2em;
}

.markdown li {
    margin-bottom: 0.3em;
}

.markdown blockquote {
    border-left: 4px solid #F59E0B;
    padding-left: 1em;
    color: #94A3B8;
    background: rgba(245, 158, 11, 0.05);
    padding: 0.5em 1em;
    border-radius: 0 8px 8px 0;
}