/* Minimalist typography theme overrides */

::-webkit-scrollbar { 
    width: 6px; 
}
::-webkit-scrollbar-track { 
    background: transparent; 
}
::-webkit-scrollbar-thumb { 
    background: #e5e5e5; 
}
.dark ::-webkit-scrollbar-thumb { 
    background: #262626; 
}
::-webkit-scrollbar-thumb:hover { 
    background: #d4d4d4; 
}
.dark ::-webkit-scrollbar-thumb:hover { 
    background: #404040; 
}

/* Base link hover effect */
a {
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

/* Make bullet points blend in nicely */
ul li::marker {
    color: #a3a3a3;
}
.dark ul li::marker {
    color: #525252;
}
