*{
    box-sizing: border-box;
    padding:0;
    margin:0;
    -webkit-user-select: none; /* Safari */
    -moz-user-select: none;    /* Firefox */
    -ms-user-select: none;     /* IE 10+ and Edge */
    user-select: none;  
}

html,body{
    overflow:visible;
    min-height:100vh;
    font-family:sans-serif;
}


#container{
    display:grid;
    grid-template-rows:auto 1fr auto;
    min-height:100vh;
    max-height:none;
    width:100vw;
    gap:10px;
    padding:20px;

}

#headerContainer{
    position:sticky;
    top:0;
    z-index:100;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding:0px;
    background-color: #32200c;
    
}

#headerTop{
    width:100%;
    height:300px;
    padding:0px;

}
#logo{
    width:40%;
    height:100%;
    margin-left:30%;
}
#headerBottom{
    
    width:100%;
    height: 50px;
    padding-bottom:10px;
   
}

#headerBottom div{
    width:600px;
    height:100%;
    display:flex;
    justify-content: space-evenly;
    align-items: center;
    margin:auto;
    
}

#headerBottom div a{
    text-decoration: none;
    color:white;
    padding:20px;
    margin-right:10px;
   
}

#headerBottom div a:hover{
    background-color: white;
    color:black;
    font-size: 20px;
}

#cartIcon{
    
    
}

#cartDefault{
    width: 30px;
    height: 30px;
}

#cartHover{
    width: 35px;
    height: 35px;
}
#cartDefault{
    display:block;
}

#cartHover{
    display:none;
}

#cartIcon:hover #cartHover{
    display:block;
}

#cartIcon:hover #cartDefault{
    display:none;
}

#mainContainer{
    padding:10px;
    /* background-color: yellow; */
}

.title{
    text-align: center;
    color:#32200c;
    font-size: 50px;
    margin-top:60px;
    font-weight: bold;
}

#footerContainer{

}

.dashboard{
    display:flex;
    width:100vw;
    height: 100vh;
    overflow: hidden;
    /* position:relative; */

}

.sidebar{
    /* position:sticky; */
    background-color:#32200c;
    display: flex;
    flex-direction: column;
    /* overflow: hidden; */
    /* top:0; */
    padding:40px;
    height:100vh;
    width: 350px;
    /*  Prevent the sidebar from squishing */
    flex-shrink:0;
}

.sidebar div{
    display: flex;
    flex-direction: column;
    height:60%;
    justify-content: space-around;
    margin-top: 80px;
}

.sidebar a, .sidebar p{
    text-decoration: none;
    color:white;
    font-size: 25px;
    padding:20px;
    text-align: center;
}

.sideBarTitle{
    font-weight: bold;
}

.sidebar a:hover{
    background-color: white;
    color:black;
}

.sidebar div p{
    cursor:pointer;
}

.sidebar div p:hover{
    background-color: white;
    color:black;
}

#dashboardLogo{
    width: 300px;
    height: 200px;
}


#dashboardLogo img{
    width: 100%;
    height: 100%;
    z-index: 100;
}

.mainbarTitle{
    font-weight: bold;
    font-size: 40px;
    /* width:50%; */
    margin-left:100px;
    padding:50px;
    color:#32200c;
}

.mainbar{
    padding:40px;
    height:100vh;

    /* take up remaining space */
    flex-grow:1;

    overflow-y: auto;
}


#footerContainer{
    
    z-index:100;
    display:flex;
    justify-content: center;
    align-items: center;
    padding:10px;
    background-color: #32200c;
    
}

#copyright{
    font-size: 20px;
    color:white;
}

#current-date{
    color:white;
    z-index: 101;
    margin-left:10px;
}