.sidebar {
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 85px;
	display: flex;
	overflow-x: hidden;
	flex-direction: column;
	background: #131416;
	padding: 25px 20px;
	transition: all 0.4s ease;
	border-right: 1px solid #212225;
	box-shadow: 8px 0px 16px 0px rgba(0, 0, 0, 0.2);
	z-index: 1000;
}

.sidebar:hover {
	width: 260px;
}

.sidebar .sidebar-header {
	display: flex;
	align-items: center;
}

.sidebar .link-icon {
	width: 20px;
	color: #afafaf;
}

.sidebar .sidebar-header img {
	width: 42px;
}

.sidebar .sidebar-header h2 {
	color: #efef9c;
	font-size: 1.50rem;
	font-weight: 600;
	white-space: nowrap;
	margin-top: 5px;
	margin-left: 23px;
}

.sidebar-links h4 {
	color: #afafaf;
	font-weight: 500;
	white-space: nowrap;
	margin: 10px 0;
	position: relative;
}

.sidebar-links h4 span {
	opacity: 0;
}

.sidebar:hover .sidebar-links h4 span {
	opacity: 1;
}

.sidebar-links .menu-separator {
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 1px;
	transform: scaleX(1);
	transform: translateY(-50%);
	background: #646464;
	transform-origin: right;
	transition-delay: 0.2s;
}

.sidebar:hover .sidebar-links .menu-separator {
	transition-delay: 0s;
	transform: scaleX(0);
}

.sidebar-links {
	list-style: none;
	margin-top: 20px;
	height: 80%;
	overflow-y: auto;
	scrollbar-width: none;
}

.sidebar-links::-webkit-scrollbar {
	display: none;
}

.sidebar-links li a {
	margin-left: 3px;
	display: flex;
	align-items: center;
	gap: 1px 20px;
	color: #afafaf;
	font-weight: 500;
	white-space: nowrap;
	padding: 15px 10px;
	text-decoration: none;
	transition: 0.2s ease;
	margin-bottom: 3px;
}

.sidebar-links li a:hover {
	background: #2a2a2ad6;
	border-radius: 4px;
}

.sidebar .selected {
	background: #232323a2;
	border-radius: 4px;
}

.sidebar .footer {
	color: #afafaf38 !important;
}

.sidebar .footer-bar {
	background: #afafaf00 !important;
}

.user-account {
	margin-top: auto;
}

.sidebar-header-logo-container {
	text-decoration: none;
	display: flex;
}

.sidebar-header-logo {
	margin-top: -5px;
}

.burger-menu {
	display: none;
	position: fixed;
	top: 15px;
	left: 15px;
	z-index: 1001;
	width: 40px;
	height: 40px;
	cursor: pointer;
	background: #131416;
	border-radius: 4px;
	padding: 8px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
}

.burger-menu span {
	display: block;
	width: 100%;
	height: 3px;
	background: #afafaf;
	margin: 5px 0;
	border-radius: 2px;
	transition: 0.3s;
}

.sidebar-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.7);
	z-index: 999;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.sidebar.active + .sidebar-overlay {
	opacity: 1;
}

@media (max-width: 600px) {
	.sidebar {
		left: -100%;
		width: 240px;
	}
}

@media (max-width: 600px) {
	.sidebar.active {
		left: 0;
	}

	.sidebar:hover {
		width: 240px;
	}

	.burger-menu {
		display: block;
		margin-top: -10px;
	}

	.sidebar-overlay {
		display: block;
		width: 0;
	}

	.inner-content {
		margin-left: 0 !important;
	}

	.sidebar-links h4 span {
		opacity: 1;
	}

	.sidebar .sidebar-links .menu-separator {
		transform: scaleX(0);
	}

	.burger-menu.active {
		display: none !important;
	}
}