/* Center the navigation menu container */ 
body { 
	display: flex; 
	justify-content: center; 
	align-items: flex-start; /* Align items to the top */ 
	height: 100vh; /* Ensure the body takes up the full viewport height */ 
	margin: 0; 
	padding-top: 50px; /* Add padding to move the menu down */
	background-color: #fff; /* Light background color whit for contrast */ 
}
/* Style the menu container */ 
.menu-container { 
	text-align: center; 
	} 
/* Style the logo image */ 
.menu-logo { 
	width: 200px; /* Adjust the size as needed */ 
	margin-bottom: 20px; 
	}
/* Style the navigation menu */
.nav-menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
    background-color: #fff;
	width: fit-content; /* Ensure the menu width fits its content */
}

/* Style the list items */
.nav-menu li {
    display: block;
	margin: 5px 0;
	background-color: #fff; /* Change background color to white */
	border-radius: 5px;
	padding: 0; /* Remove padding from list items */
}

/* Indent each item more than the previous one */
.nav-menu li:nth-child(2) {
    padding-left: 45px;
}

.nav-menu li:nth-child(3) {
    padding-left: 75px;
}

.nav-menu li:nth-child(4) {
    padding-left: 105px;
}
.nav-menu li:nth-child(5) {
    padding-left: 135px;
}
/* Style the links inside the list items */
.nav-menu li a {
    display: flex;
    align-items: center;
    color: #333; /* Change text color to dark for better contrast on white */text-align: left;
    text-align: left;
	padding: 10px 14px; /* Reduced padding for smaller blocks */
    text-decoration: none;
	width: fit-content; /* Ensure the link width fits its content */
	background-color: transparent; /* Make sure the link background is transparent */
}

/* Style the icons inside the links */
.menu-icon {
    margin-right: 8px;
    width: 24px;
    height: 24px;
}

/* Change the color of links on hover */
.nav-menu li a:hover {
    background-color: #555;
	border-radius: 5px;
}
