/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 3-set-2023, 21.50.55
    Author     : ciccio
*/

#sidebar {
    top: 48px;
    margin: 0px;
    padding: 0px;
    width: 6em;
    height: 100%;
    position: fixed;
    left: 0;
    transition: all 200ms linear;
    background-color: #fafafa;
    box-shadow: 5px 5px 5px #f0f0f0;
/*z-index: 99;*/
}

#sidebar.active {
    left: -120px;
}
#sidebar.toggle-btn {
    position: absolute;
}

#main {
    /*font-family: 'Montserrat', sans-serif; font-weight: 400;*/
    overflow-x: hidden;
    margin-left: 6.5em;
    margin-top: 70px;

    transition: all 200ms linear;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
    color: #333;
    background-color: #fafafa;
        background: linear-gradient(90deg, rgb(255 255 255) 0%, rgb(122 191 255 / 58%) 100%);

}


.sidenav > a {
    line-height: 1.8em;
    padding:0!important;
    margin:0!important;
    font-size: .8rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
    display:block;
    text-align: center;
}
.sidenav > a.dropdown-content:after {
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: black transparent transparent transparent;
    position: relative;
    content: "";
    left: 2px;
    top: 13px;
}
.sidenav i {
    display: block;
    margin: 0;
    padding: 0;
    text-align: center;
    margin-top: 15px;
}
.sidenav > ul {
    margin: 0;
    padding: 0;
    text-align: center;
    display: none;
    -webkit-animation: fadein 300ms, fadeout 300ms 2.5s;
    animation: fadein 300ms, fadeout 300ms 2.5s;
}
.sidenav > ul > li {
    margin-top: 2px;
    list-style-type: none;
}
.sidenav > ul > li a {
    line-height: 1.8em;
    margin: 2px;
    font-size: .8rem;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}
