.admin-panel {
	background:
		radial-gradient(900px 520px at -10% -20%, rgba(201, 223, 255, 0.52), rgba(201, 223, 255, 0) 62%),
		radial-gradient(720px 460px at 110% 120%, rgba(255, 213, 186, 0.46), rgba(255, 213, 186, 0) 60%),
		linear-gradient(140deg, #f3f6fb 0%, #f8f6f3 100%);
}

.dash-header {
	background: rgba(255, 255, 255, 0.78);
	backdrop-filter: blur(10px);
	border-bottom: 1px solid rgba(20, 33, 59, 0.08);
}

.dash-header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 0 14px;
}

.dash-brand-wrap {
	display: flex;
	align-items: center;
	gap: 14px;
}

.dash-brand-logo {
	height: 42px;
	width: auto;
}

.dash-brand-title {
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.2;
	color: #122247;
	letter-spacing: 0.01em;
}

.dash-brand-subtitle {
	color: #667694;
	font-size: 0.79rem;
}

.dash-user-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.dash-user-chip {
	display: inline-flex;
	align-items: center;
	padding: 8px 12px;
	border-radius: 999px;
	background: #e9f0ff;
	color: #243b68;
	font-size: 0.8rem;
	font-weight: 600;
}

.dash-logout-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border-radius: 999px;
	border: 1px solid rgba(31, 47, 84, 0.24);
	background: #fff;
	color: #1d2e54;
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	transition: all .25s ease;
}

.dash-logout-btn:hover {
	background: #f6f8ff;
	color: #1d2e54;
}

.dash-nav {
	display: flex;
	gap: 8px;
	padding: 0 0 16px;
	overflow-x: auto;
}

.dash-nav-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.9);
	border: 1px solid rgba(36, 52, 88, 0.13);
	color: #2f4066;
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
	transition: all .25s ease;
}

.dash-nav-link:hover {
	background: #eef3ff;
	color: #233a66;
}

.dash-nav-link.is-active {
	background: linear-gradient(135deg, #294ca9 0%, #466ecf 100%);
	border-color: transparent;
	color: #fff;
}

.dash-hero {
	padding: 24px 26px;
	border-radius: 18px;
	background: linear-gradient(155deg, #1f3366 0%, #2f4f97 70%, #3f63b4 100%);
	box-shadow: 0 18px 42px rgba(28, 43, 78, 0.24);
}

.dash-hero-kicker {
	color: rgba(228, 237, 255, 0.8);
	font-size: 0.76rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	font-weight: 600;
}

.dash-hero-title {
	color: #f5f8ff;
	font-size: clamp(1.3rem, 1.12rem + .9vw, 2rem);
	letter-spacing: -0.01em;
}

.dash-hero-text {
	color: rgba(236, 243, 255, 0.88);
	font-size: 0.92rem;
	max-width: 60ch;
}

.dash-stat-card {
	padding: 18px 18px;
	border-radius: 14px;
	border: 1px solid rgba(36, 52, 88, 0.1);
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 8px 22px rgba(39, 57, 99, 0.09);
}

.dash-stat-label {
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: #60708f;
	text-transform: uppercase;
}

.dash-stat-value {
	font-size: clamp(1.5rem, 1.2rem + 1vw, 2.2rem);
	color: #15264a;
	letter-spacing: -0.02em;
}

.dash-panel-card {
	padding: 20px;
	border-radius: 14px;
	border: 1px solid rgba(37, 53, 91, 0.1);
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 10px 26px rgba(37, 53, 91, 0.1);
}

.dash-panel-title {
	font-size: 1.05rem;
	font-weight: 700;
	color: #162950;
	letter-spacing: -0.01em;
}

.dash-muted {
	font-size: 0.82rem;
	color: #667695;
}

.dash-table thead th {
	background: #f1f5ff;
	color: #30456f;
	border-bottom: 1px solid #d9e2f4;
	font-size: 0.78rem;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.dash-table td {
	vertical-align: middle;
}

.dash-status {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	border-radius: 999px;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.02em;
}

.dash-status.is-success {
	background: #dff5e8;
	color: #167a44;
}

.dash-status.is-danger {
	background: #fbe2e6;
	color: #9f2140;
}

.dash-action-list {
	display: grid;
	gap: 10px;
}

.dash-action-link {
	display: block;
	padding: 12px 12px;
	border-radius: 12px;
	border: 1px solid #d7e1f3;
	background: #f7faff;
	color: #20345d;
	text-decoration: none;
	transition: all .25s ease;
}

.dash-action-link:hover {
	transform: translateY(-1px);
	background: #eef4ff;
	color: #1f3564;
}

.dash-action-link span {
	display: block;
	font-size: 0.9rem;
	font-weight: 700;
}

.dash-action-link small {
	display: block;
	margin-top: 2px;
	font-size: 0.76rem;
	color: #60708f;
}

.dash-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.dash-primary-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 16px;
	border: 0;
	border-radius: 10px;
	background: linear-gradient(135deg, #294ca9 0%, #466ecf 100%);
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.01em;
	box-shadow: 0 10px 24px rgba(44, 73, 169, 0.28);
	transition: all .24s ease;
}

.dash-primary-btn:hover {
	color: #fff;
	transform: translateY(-1px);
	filter: brightness(1.05);
}

.dash-secondary-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	padding: 0 16px;
	border: 1px solid rgba(33, 51, 89, 0.25);
	border-radius: 10px;
	background: #ffffff;
	color: #1e3261;
	font-weight: 700;
	letter-spacing: 0.01em;
	transition: all .24s ease;
}

.dash-secondary-btn:hover {
	background: #eef4ff;
	color: #1b305e;
	transform: translateY(-1px);
}

.admin-panel .btn-info,
.admin-panel .btn-danger {
	border-radius: 8px;
	font-weight: 600;
}

.dash-table-image {
	width: 80px;
	height: 60px;
	object-fit: cover;
	border-radius: 8px;
	border: 1px solid #dce4f3;
}

.dash-portfolio-title {
	font-size: 1.02rem;
	font-weight: 700;
	color: #162950;
	line-height: 1.35;
}

.dash-portfolio-category {
	display: inline-block;
	font-size: 0.95rem;
	color: #30456f;
}

.dash-actions-cell {
	min-width: 150px;
	vertical-align: middle;
}

.dash-actions-group {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

.dash-panel-card .dash-table tbody tr:hover {
	background: #f7faff;
}

.dash-panel-card .dash-table td {
	padding-top: 12px;
	padding-bottom: 12px;
}

.dash-action-mini {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 5px 10px;
	border-radius: 8px;
	border: 1px solid #c8d6f0;
	background: #edf3ff;
	color: #1e396f;
	font-size: 0.76rem;
	font-weight: 700;
	text-decoration: none;
	transition: all .22s ease;
}

.dash-action-mini:hover {
	color: #1e396f;
	background: #dfeaff;
}

.dash-action-mini.is-danger {
	background: #ffe9ed;
	border-color: #f4c1cd;
	color: #9c2642;
}

.dash-action-mini.is-danger:hover {
	background: #ffdce3;
	color: #96213d;
}

@media (max-width: 767.98px) {
	.dash-actions-cell {
		min-width: 130px;
	}

	.dash-action-mini {
		padding: 5px 8px;
		font-size: 0.72rem;
	}
}


@media (max-width: 991.98px) {
	.dash-header-row {
		padding: 14px 0 12px;
	}

	.dash-brand-title {
		font-size: 0.95rem;
	}

	.dash-brand-subtitle {
		display: none;
	}

	.dash-user-chip {
		display: none;
	}

	.dash-hero {
		padding: 18px 18px;
	}

	.dash-section-head {
		flex-direction: column;
		align-items: flex-start;
	}
}

