:root {
    --sidebar-text: black;
    --sidebar-background-color: #FFFFFF;
    --text-color: #64748B;
    --border-right: 1px solid #E5E7EB;
    --text-hover: #FFFFFF;
    --box-shadow-item-hover: 0 0 30px rgba(59, 130, 246, 0.4);
    --background-item-hover: linear-gradient(45deg, #3B82F6 0%, #2563EB 100%);

    --fab-close-background: linear-gradient(45deg, #3B82F6, #22C55E);

    --sidebar-scroll-bg: #3bc1f6;
    --sidebar-scroll-thumb-bg: #1976D2;
    --sidebar-scroll-thumb-hover-bg: #0288D1;
}

:root[data-theme="dark"] {
    --sidebar-text: white;
    --sidebar-background-color: #1E293B;
    --text-color: #D1D5DB;
    --border-right: 1px solid #334155;
    --text-hover: #0B0F14;
    --box-shadow-item-hover: 0 0 30px rgba(34, 197, 94, 0.4);
    --background-item-hover: linear-gradient(45deg, #22C55E 0%, #10B981 100%);
    --fab-close-background: linear-gradient(45deg, #22C55E, #10B981);


    --sidebar-scroll-bg: #8cff00;
    --sidebar-scroll-thumb-bg: #0fae79;
    --sidebar-scroll-thumb-hover-bg: #22C55E;
}

.site-sidebar {
    height: 100vh;
    background-color: var(--sidebar-background-color);
    border-right: var(--border-right);
    overflow-y: auto;
}

.site-sidebar::-webkit-scrollbar {
    width: 8px;
    background-color: var(--sidebar-scroll-bg);
}

.site-sidebar::-webkit-scrollbar-thumb {
    background-color: var(--sidebar-scroll-thumb-bg);
    border-radius: 4px;
}

.site-sidebar::-webkit-scrollbar-thumb:hover {
    background-color: var(--sidebar-scroll-thumb-hover-bg);
}

.site-sidebar__head {
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    padding: 16px 0px;
}

.site-sidebar__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.site-menu__list {
    list-style-type: none;
    display: flex;
    flex-direction: column;
    padding: 0px 0px;

}

.site-menu__item {
    margin: 4px 8px
}

.site-menu__item:hover {
    cursor: pointer;
}

.site-menu__item:hover .site-menu__link {
    border-radius: 10px;
    box-shadow: var(--box-shadow-item-hover);
    background: var(--background-item-hover);
    color: var(--text-hover);
}

.site-menu__link {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-color);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;

}

.site-menu__link:visited {
    color: var(--text-color);
}

.site-sidebar__fab {
    width: 90%;
    display: grid;
    justify-content: end;
}

#fab-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 20px;
    background: var(--fab-close-background);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: none;

}

@media screen and (min-width: 769px) {
    #fab-close {
        display: none;
    }

}

@media screen and (max-width: 768px) {
    #fab-close {
        display: block;
    }

}