/* ========================================================================
   Safari Scrollbar Visibility Fix (Gutenberg Editor)
   Safari renders overlay scrollbars with near-invisible light gray thumb on
   white/light backgrounds. This makes the thumb visible in the block editor.
   ======================================================================== */

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.35);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.55);
}
