@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

body {
    font-family: 'Raleway', serif;
}

a {
    text-decoration: none;
}

ul,
ul li {
    list-style: none;
}

.sidebar-scrollbar {
    scrollbar-width: thin;
    scrollbar-color: transparent #001529;
    transition: scrollbar-color 0.3s ease;
}

.sidebar-scrollbar::-webkit-scrollbar {
    width: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-scrollbar::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 10px;
}

.sidebar-scrollbar::-webkit-scrollbar-track {
    background: #001529;
    border-radius: 10px;
}

.sidebar-scrollbar:hover {
    scrollbar-color: #888 #001529;
}

.sidebar-scrollbar:hover::-webkit-scrollbar {
    opacity: 1;
}

.sidebar-scrollbar:hover::-webkit-scrollbar-thumb {
    background-color: #060606;
    border-radius: 10px;
}

.sidebar-scrollbar:hover::-webkit-scrollbar-thumb:hover {
    background-color: #000000;
}

.sidebar-scrollbar:hover::-webkit-scrollbar-track {
    background: #001529;
    border-radius: 10px;
}
