/**
 * Scrollbar Component Styles
 */

/* === SCROLLBAR STYLING === */
.game-log::-webkit-scrollbar,
.scenario-content::-webkit-scrollbar {
    width: var(--spacing-sm);

.game-log::-webkit-scrollbar-track,
.scenario-content::-webkit-scrollbar-track {
    background: var(--color-bg-input);

.game-log::-webkit-scrollbar-thumb,
.scenario-content::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: var(--radius-md);

.game-log::-webkit-scrollbar-thumb:hover,
.scenario-content::-webkit-scrollbar-thumb:hover {
    background: var(--color-border-light);

}}}}