/* ============================================================
   NEXUS - BASE
   Token e componenti condivisi: vedi nexus-ui.css (:root)
   ============================================================ */

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: var(--nexus-bg) !important;
    color: var(--nexus-text) !important;
    font-family: var(--nexus-font);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    background: var(--nexus-blue);
    color: #ffffff;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--nexus-border-strong);
    border-radius: 20px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--nexus-text-muted);
}
