/* ==============================================================
   utilities.css
   Small global helpers that don't belong to any one component:
   the custom scrollbar theme and a muted text-gradient helper.
============================================================== */

/* Custom scrollbar theme (WebKit). */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-base);
}

::-webkit-scrollbar-thumb {
    background: var(--color-line);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-line-hover);
}

/* Muted text-gradient utility, kept for parity with earlier stylesheet. */
.text-gradient {
    background: linear-gradient(90deg, var(--color-white) 0%, var(--color-muted) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
