@charset "utf-8";
/* CSS Document */

body {
	font-family: "inter-variable", sans-serif;
  margin: 0 ;
  padding: 0px;
	
}

#sidebar {
	position:fixed;
	top:0;
	left: 0;
	z-index:100;
	
	width: 250px;
    height: 100vh;
    background-color: #FFF9C4;
	border-bottom-right-radius: 5%;
	border-top-right-radius: 5%;
	font-variation-settings: "slnt" 0, "wght" 600;
	transform: translateX(-100%); 
}

#screen{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 90;
	width: 100vw;
	height: 100vh;
	background-color: #343434;
	opacity: 60%;
}


        
.profile {
    text-align: center;
    margin-bottom: 20px;
    background-color: white;
    padding: 20px 0;
	border-top-right-radius: 5%;
}

.profile-pic-container {
    width: 90px;
    height: 90px;
    border-radius:50%;
    background-color: white;
    padding: 5px;
    margin: 0 auto 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.profile img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.profile .email {
    font-size: 12px;
    color: #666;
    margin: 0 0 5px 0;
}

.profile .edit {
    font-size: 10px;
    color: #1a73e8;
    text-decoration: none;
}

/* Adjust the top padding of the first menu item */
.sidebar > a:first-of-type {
    margin-top: 20px;
}

.menu-item-container {
    padding: 0px 0px 0px 30px;
}

.menu-item {
    padding: 10px 0;
	margin-bottom: 5px;
    color: #512C00;
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 24px; /* Set a consistent height */
}

.menu-item i, .menu-item img {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.menu-item i.fas {
    font-size: 18px; /* Adjust as needed */
}

.menu-item img {
    object-fit: contain;
}
        
.bottom-menu {
	position: absolute;
    bottom: 10px;
    left: 30px;
}

