/*
 * RainDrop Custom Styles
 * styles.css
 */
body {
    font-family: 'Google Sans Text', 'Roboto', Arial, sans-serif;
}

/* Custom scrollbar (Google-docs light theme) */
/* For Webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-track {
    background: #ffffff;
}
::-webkit-scrollbar-thumb {
    background: #dadce0; /* Google border gray */
    border: 3px solid #ffffff;
    border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
    background: #bdc1c6;
}

