/* Global Styles - Engage AI Admin */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

/* Custom Scrollbar — thin, muted, hidden until hover */
* {
    scrollbar-width: thin;
    scrollbar-color: transparent transparent;
}

*:hover {
    scrollbar-color: rgba(128, 128, 128, 0.4) transparent;
}

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

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

::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 10px;
    transition: background 0.2s;
}

*:hover::-webkit-scrollbar-thumb {
    background: rgba(128, 128, 128, 0.4);
}
