@tailwind base;
@tailwind components;
@tailwind utilities;

/* width */
::-webkit-scrollbar {
    width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background-color: red;
    /* #DC2626 */
}

/* Handle */
::-webkit-scrollbar-thumb {
    background-color: black;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    /*@apply bg-primary;*/
}