@font-face {
    font-family: 'Quicksand';
    src: url('Quicksand-Regular.ttf') format('opentype');
}

@font-face {
    font-family: 'Quicksand-bold';
    src: url('Quicksand-Bold.ttf') format('opentype');
    font-weight: 700;
}

@font-face {
    font-family: 'Quicksand-light';
    src: url('Quicksand-Light.ttf') format('opentype');
    font-weight: 300;
}


.custom-scrollbar::-webkit-scrollbar {
    width: 6px;
}

.custom-scrollbar::-webkit-scrollbar-track {
    background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #CBD5E1;
    border-radius: 20px;
}

.dark .custom-scrollbar::-webkit-scrollbar-thumb {
    background-color: #475569;
}

#sidebar-toggle:checked~aside {
    width: 0px;
    border-right: none;
}

#sidebar-toggle:checked~aside .sidebar-content {
    opacity: 0;
    pointer-events: none;
}

.hamburger-container {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
    height: 4rem;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    width: 4rem;
}

/* Styles from login.html */
body {
    transition: background-color 0.3s ease, color 0.3s ease;
}
