@import url('/assets/css/variables.css');

/* Smooth scrolling */
html {
	scroll-behavior: smooth;
}

body {
	margin: 0;
	font-family: sans-serif;
}

/* 2-Column Layout */
.layout-container {
	display: flex;
}

/* Vertical Sidebar */
.sidebar {
	position: sticky;
	top: 0;
	left: 0;
	width: 250px;
	height: 100vh;
	/*background: #222;*/
	/*padding-top: 40px;*/
	box-sizing: border-box;
}

.sidebar ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.sidebar a {
	display: block;
	color: #888;
	text-decoration: none;
	padding: 15px 25px;
	/*font-size: 16px;*/
	border-left: 4px solid transparent;
	transition: all 0.3s ease;
}

/* Active State indicator line */
.sidebar a.active {
	color: #fff;
	background: #333;
	border-left-color: #007bff; /* Blue indicator line */
}

/* Main Content pushes past the sidebar */
.content {
	margin-left: 50px;
	width: calc(100% - 250px);
}

/*
section {
	height: 100vh;
	padding: 40px;
	box-sizing: border-box;
}

#section1 { background: #f8f9fa; }
#section2 { background: #e9ecef; }
#section3 { background: #dee2e6; }
#section4 { background: #ced4da; }
*/