/* Minimal Sidebar */
.sidebar {
	position: fixed;
	left: 0;
	top: 0;
	height: 100vh;
	width: 180px;
	background-color: #fafafa; /* Light, minimal background */
	padding: 80px 0px;
	border-right: 0.5px solid #e0e0e0; /* Subtle border for separation */
	overflow-y: auto;
	z-index: 1;
	text-align: center; /* Centers the text inside the sidebar */
    }
    
    /* Minimalist styling for links */
    .sidebar ul {
	list-style: none;
	padding: 0;
	margin: 0;
    }
    
    .sidebar ul li {
	margin: 5px 0;
    }
    
    .sidebar ul li a {
	text-decoration: none;
	font-size: 16px;
	color: #333;
	padding: 8px;
	display: inline-block; /* Allows horizontal centering */
	width: 100%; /* Makes sure the clickable area spans the sidebar width */
	border-radius: 4px;
	transition: background-color 0.3s, color 0.3s;
    }
    
    /* Minimal hover effect */
    .sidebar ul li a:hover {
	background-color: #e0e0e0;
	color: #0073e6;
    }
    