.sidebar {
	height: 100%;
	width: 250px;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: #1e2229;
	overflow-x: hidden;
	padding-top: 5px;
}

.sidebar a, .sidebar-link {
	padding: 5px 8px 8px 32px;
	text-decoration: none;
	font-size: 14px;
	color: #b8c5d6;
	font-family: 'Nunito';
	display: block;
}

.spacer {
	height: 1px;
	background-color: #b8c5d633;
	margin: 8px 8px;
	display:flex;
}

.sidebar a:hover, .sidebar-link:hover {
	color: #f1f1f1;
}

.sidebar-logo-div {
	justify-content: center;
	align-items: center;
	display: flex;
}

.sidebar img {
	width: 100%;
	max-width: 200px;
	margin-bottom: 5px;
}

.userdiv {
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 5px 10px 10px 5px;
}

.userdiv #userinfo {
	font-size: 12px;
	color: #b8c5d6;
	font-family: 'Nunito';
}

.logout-btn {
	background: none;
	border: 1px solid #000000; /* Black border */
	border-radius: 25px; /* Makes the button round */
	color: #ccc;
	background: linear-gradient(90deg, rgba(50,98,110,1) 0%, rgba(75,55,92,1) 100%);
	font-size: 12px;
	font-family: 'Nunito';
	cursor: pointer;
}

.logout-btn:hover {
	color: #f1f1f1;
	background: linear-gradient(90deg, rgba(89,178,200,1) 0%, rgba(137,102,169,1) 100%);
}

#collapse-button-1 {
	background: rgb(82,207,203);
	background: linear-gradient(122deg, rgba(87,160,224,1.0) 0%, rgba(119,80,168,1.0) 100%);
}

#collapse-button-2 {
	background: linear-gradient(122deg, rgba(89,178,200,1) 0%, rgba(137,102,169,1) 100%);
}

.project-section {
	border: 1px solid #000000; /* Black border */
	border-radius: 25px; /* Makes the button round */
	padding: 7px 20px; /* Adjust as needed */
	margin: 7px 10px;
	/* background: linear-gradient(90deg, rgba(89,178,200,1) 0%, rgba(137,102,169,1) 100%); */
	color: #eee;
	font-family: 'Nunito';
	font-size: 16px;
	cursor: pointer;
	outline: none; /* Removes the outline */
	transition: all 0.3s; /* Smooth transition for button interaction */
}

.project-section:hover {
	transform: scale(1.05); /* Slightly shrinks the button */
}
  
.project-section:active {
	transform: scale(0.95); /* Slightly shrinks the button */
}

.dashboard-link {
	padding-left: 35px;
}

.project-section:hover, .dashboard-link:hover {
	background-color: #575757;
}

.collapse-content {
	display: none;
}

.collapse-content.show {
	display: block;
}


