.asp-panel {
	position: fixed;
	top: var(--asp-top, 145px);
	z-index: 9999;
	font-family: "Segoe UI", Tahoma, sans-serif;
	width: 244px;
	max-width: calc(100vw - 48px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
	transition: transform 0.28s ease;
}



.asp-panel ul li{
	margin-bottom:0px;
}

.asp-side-right {
	right: 0;
	border-radius: 6px 0 0 6px;
}

.asp-side-left {
	left: 0;
	border-radius: 0 6px 6px 0;
}

.asp-panel .asp-list {
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
}

.asp-panel .asp-row a {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 48px;
	padding: 12px 16px;
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	filter: brightness(1.06);
}

.asp-panel .asp-row:last-child a {
	border-bottom: 0;
}

.asp-panel .asp-row .dashicons,
.asp-panel .asp-icon {
	width: 20px;
	height: 20px;
	font-size: 20px;
	flex: 0 0 20px;
}

.asp-panel .asp-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.asp-panel .asp-text {
	text-transform: uppercase;
	letter-spacing: 0.2px;
}

.asp-panel .asp-row-primary a {
	background: linear-gradient(130deg, #4f73c6 0%, #7299e0 100%);
}

.asp-panel .asp-row-danger a {
	background: #ff1616;
}

.asp-panel .asp-row-success a {
	background: #33b600;
}

.asp-panel .asp-row-success-dark a {
	background: #31a900;
}

.asp-panel .asp-row a:hover,
.asp-panel .asp-row a:focus-visible {
	filter: brightness(1.14);
	outline: none;
}

.asp-panel .asp-toggle {
	position: absolute;
	top: 0;
	width: 38px;
	height: 50px;
	border: 0;
	padding: 0px 15px;
	background: linear-gradient(130deg, #567ad0 0%, #7ca2e3 100%);
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.asp-toggle .dashicons {
	width: 24px;
	height: 24px;
	font-size: 24px;
}

.asp-side-right .asp-toggle {
	left: -38px;
	border-radius: 6px 0 0 6px;
}

.asp-side-left .asp-toggle {
	right: -38px;
	border-radius: 0 6px 6px 0;
}

.asp-side-right.is-collapsed {
	transform: translateX(100%);
}

.asp-side-left.is-collapsed {
	transform: translateX(-100%);
}

@media (max-width: 991px) {
	.asp-panel {
		width: calc(100vw - 54px);
	}

	.asp-panel .asp-row a {
		padding: 12px 13px;
		font-size: 14px;
	}
}


