/* Panel page container — match My Account width (1200px) for consistency */
body.rentiva-panel-page .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	max-width: 1200px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

body.rentiva-panel-page .entry-content > * {
	max-width: 1200px !important;
	margin-left: auto !important;
	margin-right: auto !important;
}

.mhm-rentiva-dashboard {
	display: flex;
	background: #f6f8fc;
	border: 1px solid #e4e8f2;
	border-radius: 14px;
	overflow: hidden;
	min-height: 100vh;
	width: 100%;
	max-width: 1200px;
	margin: 40px auto;
	padding: 0 0;
	box-sizing: border-box;
}

.mhm-rentiva-dashboard__sidebar {
	width: 260px;
	flex-shrink: 0;
	background: #ffffff;
	border-right: 1px solid #e4e8f2;
	display: flex;
	flex-direction: column;
	padding: 18px 14px;
}

.mhm-rentiva-dashboard__brand {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
}

.mhm-rentiva-dashboard__brand-logo {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	background: #2f54ff;
	color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 700;
}

.mhm-rentiva-dashboard__brand-title {
	font-size: 15px;
	font-weight: 700;
	color: #1d2538;
}

.mhm-rentiva-dashboard__nav {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.mhm-rentiva-dashboard__nav-item {
	display: block;
	padding: 11px 12px;
	border-radius: 10px;
	text-decoration: none;
	color: #3c4560;
	font-size: 14px;
	font-weight: 600;
	border: 1px solid transparent;
}

.mhm-rentiva-dashboard__nav-item:hover {
	background: #f1f4fb;
}

.mhm-rentiva-dashboard__nav-item.is-active {
	background: #e9edff;
	color: #263b9e;
	border-color: #d5dcff;
}

.mhm-rentiva-dashboard__user {
	margin-top: auto;
	padding-top: 16px;
	border-top: 1px solid #edf1f8;
}

.mhm-rentiva-dashboard__user-name {
	font-size: 13px;
	font-weight: 700;
	color: #1f293d;
	margin-bottom: 8px;
}

.mhm-rentiva-dashboard__logout {
	font-size: 13px;
	font-weight: 600;
	color: #5c657f;
	text-decoration: none;
}

.mhm-rentiva-dashboard__main {
	flex: 1;
	background: #f9fbff;
}

.mhm-rentiva-dashboard__content {
	padding: 22px;
}

.mhm-rentiva-dashboard__header h2 {
	margin: 0 0 16px;
	font-size: 24px;
	line-height: 1.2;
	color: #11192b;
}

.mhm-rentiva-dashboard__kpis {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 12px;
	margin-bottom: 16px;
}

.mhm-rentiva-dashboard__kpi-card {
	position: relative;
	padding: 18px 18px 20px;
	border-radius: 16px;
	border: 1px solid #e4e8f2;
	background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
	box-shadow: 0 6px 18px rgba(22, 34, 66, 0.05);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.mhm-rentiva-dashboard__kpi-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(22, 34, 66, 0.08);
}

.mhm-rentiva-dashboard__kpi-card:nth-child(1) {
	border-left: 4px solid #2f54ff;
}

.mhm-rentiva-dashboard__kpi-card:nth-child(2) {
	border-left: 4px solid #8b5cf6;
}

.mhm-rentiva-dashboard__kpi-card:nth-child(3) {
	border-left: 4px solid #f59e0b;
}

.mhm-rentiva-dashboard__kpi-card:nth-child(4) {
	border-left: 4px solid #ef4444;
}

.mhm-rentiva-dashboard__kpi-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
}

.mhm-rentiva-dashboard__kpi-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 22px;
	height: 22px;
	border-radius: 8px;
	background: #eef2ff;
	color: #2f54ff;
	flex-shrink: 0;
}

.mhm-rentiva-dashboard__kpi-icon svg {
	width: 14px;
	height: 14px;
	display: block;
}

.mhm-rentiva-dashboard__kpi-card:nth-child(2) .mhm-rentiva-dashboard__kpi-icon {
	background: #f3e8ff;
	color: #8b5cf6;
}

.mhm-rentiva-dashboard__kpi-card:nth-child(3) .mhm-rentiva-dashboard__kpi-icon {
	background: #fff7ed;
	color: #f59e0b;
}

.mhm-rentiva-dashboard__kpi-card:nth-child(4) .mhm-rentiva-dashboard__kpi-icon {
	background: #fee2e2;
	color: #ef4444;
}

.mhm-rentiva-dashboard__kpi-label {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.02em;
	color: #6b748f;
	margin-bottom: 0;
	text-transform: uppercase;
}

.mhm-rentiva-dashboard__kpi-value {
	font-size: 34px;
	line-height: 1;
	font-weight: 800;
	color: #101828;
}

.mhm-rentiva-dashboard__kpi-meta {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 10px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 999px;
	margin-top: 10px;
	background: #eef2ff;
	color: #2f54ff;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.mhm-rentiva-dashboard__kpi-context {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	flex-wrap: wrap;
}

.mhm-rentiva-dashboard__kpi-context .mhm-rentiva-dashboard__kpi-meta {
	margin-top: 0;
}

.mhm-rentiva-dashboard__kpi-trend {
	font-size: 11px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.mhm-rentiva-dashboard__kpi-trend.is-up {
	color: #10b981;
}

.mhm-rentiva-dashboard__kpi-trend.is-down {
	color: #ef4444;
}

.mhm-rentiva-dashboard__kpi-trend.is-neutral {
	color: #64748b;
}

.mhm-rentiva-dashboard__kpi-trend.is-up::before {
	content: "\2191";
}

.mhm-rentiva-dashboard__kpi-trend.is-down::before {
	content: "\2193";
}

.mhm-rentiva-dashboard__kpi-card:nth-child(1) .mhm-rentiva-dashboard__kpi-meta {
	background: #eef2ff;
	color: #2f54ff;
}

.mhm-rentiva-dashboard__kpi-card:nth-child(2) .mhm-rentiva-dashboard__kpi-meta {
	background: #f3e8ff;
	color: #8b5cf6;
}

.mhm-rentiva-dashboard__kpi-card:nth-child(3) .mhm-rentiva-dashboard__kpi-meta {
	background: #fff7ed;
	color: #f59e0b;
}

.mhm-rentiva-dashboard__kpi-card:nth-child(4) .mhm-rentiva-dashboard__kpi-meta {
	background: #fee2e2;
	color: #ef4444;
}

.mhm-rentiva-dashboard__section {
	background: #ffffff;
	border: 1px solid #e4e8f2;
	border-radius: 12px;
}

.mhm-rentiva-dashboard__section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 14px 16px;
	border-bottom: 1px solid #edf1f8;
}

.mhm-rentiva-dashboard__section-head h3 {
	margin: 0;
	font-size: 16px;
	font-weight: 700;
	color: #1b2438;
}

.mhm-rentiva-dashboard__section-head a {
	font-size: 13px;
	font-weight: 600;
	color: #2f54ff;
	text-decoration: none;
}

.mhm-rentiva-dashboard__table-wrap {
	overflow-x: auto;
}

.mhm-rentiva-dashboard__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 13px;
	color: #2f3952;
}

.mhm-rentiva-dashboard__table th,
.mhm-rentiva-dashboard__table td {
	padding: 11px 14px;
	border-bottom: 1px solid #edf1f8;
	text-align: left;
	white-space: nowrap;
}

.mhm-rentiva-dashboard__table th {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	color: #6d7895;
}

/* ===============================
   STATUS BADGE SYSTEM
================================= */
.mhm-rentiva-dashboard__status {
	display: inline-flex;
	align-items: center;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 600;
	border-radius: 999px;
	letter-spacing: 0.02em;
}

.mhm-rentiva-dashboard__status.is-completed {
	background: #ecfdf5;
	color: #10b981;
}

.mhm-rentiva-dashboard__status.is-confirmed {
	background: #eef2ff;
	color: #2f54ff;
}

.mhm-rentiva-dashboard__status.is-progress {
	background: #fff7ed;
	color: #f59e0b;
}

.mhm-rentiva-dashboard__status.is-pending {
	background: #fef9c3;
	color: #ca8a04;
}

.mhm-rentiva-dashboard__status.is-cancelled {
	background: #fef2f2;
	color: #ef4444;
}

.mhm-rentiva-dashboard__status.is-refunded {
	background: #f1f5f9;
	color: #64748b;
}

.mhm-rentiva-dashboard__tab-content {
	background: #ffffff;
	border: 1px solid #e4e8f2;
	border-radius: 12px;
	padding: 16px;
}

@media (max-width: 1024px) {
	.mhm-rentiva-dashboard {
		flex-direction: column;
	}

	.mhm-rentiva-dashboard__sidebar {
		border-right: 0;
		border-bottom: 1px solid #e4e8f2;
	}

	.mhm-rentiva-dashboard__kpis {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 640px) {
	.mhm-rentiva-dashboard__content {
		padding: 14px;
	}

	.mhm-rentiva-dashboard__kpis {
		grid-template-columns: 1fr;
	}
}

/* ===============================
   MOBILE SPACING POLISH
================================= */
@media (max-width: 768px) {
	body.rentiva-panel-page .mhm-rentiva-dashboard__content {
		padding: 20px 16px 32px;
	}

	body.rentiva-panel-page .mhm-rentiva-dashboard__sidebar {
		padding: 20px 16px;
	}

	body.rentiva-panel-page .mhm-rentiva-dashboard__nav {
		margin-top: 16px;
		gap: 8px;
	}

	body.rentiva-panel-page h1,
	body.rentiva-panel-page .entry-title {
		font-size: 28px;
		margin-bottom: 24px;
	}

	body.rentiva-panel-page .mhm-rentiva-dashboard__kpis {
		gap: 16px;
		margin-bottom: 24px;
	}

	body.rentiva-panel-page .mhm-rentiva-dashboard__kpi-card {
		padding: 18px 16px;
		border-radius: 14px;
		box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
	}

	body.rentiva-panel-page .mhm-rentiva-dashboard__kpi-card:hover {
		transform: none;
	}

	body.rentiva-panel-page .mhm-rentiva-dashboard__kpi-meta {
		font-size: 9px;
		padding: 4px 8px;
	}

	body.rentiva-panel-page .mhm-rentiva-dashboard__section {
		padding: 18px 16px;
		border-radius: 16px;
	}

	body.rentiva-panel-page .mhm-rentiva-dashboard__section-head {
		padding: 0 0 12px;
	}

	body.rentiva-panel-page .mhm-rentiva-dashboard__table-wrap {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	body.rentiva-panel-page .mhm-rentiva-dashboard__sidebar {
		background: transparent;
		border: none;
		padding: 12px 16px 4px;
	}

	body.rentiva-panel-page .mhm-rentiva-dashboard {
		border-radius: 0;
		border: none;
		background: #f6f8fc;
	}

	body.rentiva-panel-page .mhm-rentiva-dashboard__brand {
		margin-bottom: 12px;
	}
}

/* ===============================
   MOBILE TAB BAR MODE
================================= */
@media (max-width: 768px) {
	body.rentiva-panel-page .mhm-rentiva-dashboard {
		flex-direction: column;
	}

	body.rentiva-panel-page .mhm-rentiva-dashboard__sidebar {
		width: 100%;
		background: transparent;
		border: none;
		padding: 0 16px;
	}

	body.rentiva-panel-page .mhm-rentiva-dashboard__brand,
	body.rentiva-panel-page .mhm-rentiva-dashboard__user {
		display: none;
	}

	body.rentiva-panel-page .mhm-rentiva-dashboard__nav {
		flex-direction: row;
		overflow-x: auto;
		gap: 8px;
		padding: 12px 0;
		margin-top: -8px;
		border-bottom: 1px solid #e4e8f2;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	body.rentiva-panel-page .mhm-rentiva-dashboard__nav::-webkit-scrollbar {
		display: none;
	}

	body.rentiva-panel-page .mhm-rentiva-dashboard__nav-item {
		white-space: nowrap;
		padding: 10px 14px;
		border-radius: 999px;
		background: #eef2ff;
		font-size: 13px;
		flex-shrink: 0;
	}

	body.rentiva-panel-page .mhm-rentiva-dashboard__nav-item.is-active {
		background: #2f54ff;
		color: #ffffff;
		border-color: #2f54ff;
	}
}

/* ===============================
   SPRINT 4: VENDOR ANALYTICS
================================= */

/* Analytics KPI Row  3 equal columns */
.mhm-rentiva-dashboard__analytics-kpis {
display: grid;
grid-template-columns: repeat(3, minmax(0, 1fr));
gap: 12px;
margin-bottom: 16px;
}

.mhm-rentiva-dashboard__analytics > .mhm-rentiva-dashboard__section {
margin-top: 16px;
}

/* Sparkline container */
.mhm-rentiva-dashboard__sparkline {
padding: 12px 16px 16px;
overflow: hidden;
}

.mhm-rentiva-dashboard__sparkline-svg {
display: block;
width: 100%;
height: 80px;
}

.mhm-rentiva-dashboard__sparkline-range {
font-size: 12px;
font-weight: 500;
color: #8a94b0;
}

/* Analytics KPI card accent colours */
.mhm-rentiva-dashboard__kpi-card.is-analytics { border-left: 4px solid #2f54ff; }
.mhm-rentiva-dashboard__kpi-card.is-analytics:nth-child(2) { border-left-color: #8b5cf6; }
.mhm-rentiva-dashboard__kpi-card.is-analytics:nth-child(3) { border-left-color: #f59e0b; }

/* Growth badge sizing inside KPI card value */
.mhm-rentiva-dashboard__kpi-value .mhm-rentiva-dashboard__kpi-trend {
font-size: 28px;
font-weight: 800;
line-height: 1;
}

/* Zero analytics state */
.mhm-rentiva-dashboard__analytics-empty {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 48px 24px;
text-align: center;
gap: 16px;
background: #ffffff;
border: 1px solid #e4e8f2;
border-radius: 12px;
}

.mhm-rentiva-dashboard__analytics-empty svg { width: 48px; height: 48px; flex-shrink: 0; }

.mhm-rentiva-dashboard__analytics-empty p {
font-size: 14px;
color: #6b7492;
max-width: 320px;
line-height: 1.6;
margin: 0;
}

@media (max-width: 1024px) {
.mhm-rentiva-dashboard__analytics-kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
.mhm-rentiva-dashboard__analytics-kpis { grid-template-columns: 1fr; }
.mhm-rentiva-dashboard__sparkline-svg { height: 60px; }
}

/* ===============================
   PAYOUT FORM SPINNER
================================= */
@keyframes mhm-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.mhm-rentiva-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: mhm-spin 1s linear infinite;
}

/* ===============================
   VENDOR LEDGER & PAYOUTS
================================= */

.mhm-rentiva-dashboard__payouts {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

/* Balance card */
.mhm-rentiva-dashboard__payout-balance-card {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-bottom: 8px;
}

.mhm-rentiva-dashboard__payout-stat {
	background: #ffffff;
	border: 1px solid #e4e8f2;
	border-radius: 14px;
	padding: 20px 22px;
	position: relative;
	overflow: hidden;
}

.mhm-rentiva-dashboard__payout-stat::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 3px;
}

.mhm-rentiva-dashboard__payout-stat--available::before { background: #2f54ff; }
.mhm-rentiva-dashboard__payout-stat--min::before      { background: #f59e0b; }
.mhm-rentiva-dashboard__payout-stat--pending::before  { background: #8b5cf6; }

.mhm-rentiva-dashboard__payout-stat-label {
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: #8a94b0;
	margin-bottom: 8px;
}

.mhm-rentiva-dashboard__payout-stat-value {
	font-size: 1.625rem;
	font-weight: 800;
	color: #11192b;
	line-height: 1.1;
	letter-spacing: -0.02em;
}

.mhm-rentiva-dashboard__payout-stat--available .mhm-rentiva-dashboard__payout-stat-value {
	color: #2f54ff;
}

/* Notice banners */
.mhm-rentiva-dashboard__notice {
	padding: 12px 16px;
	border-radius: 10px;
	font-size: 0.875rem;
	font-weight: 500;
	margin-top: 4px;
}

.mhm-rentiva-dashboard__notice.is-success {
	background: #f0fdf4;
	color: #166534;
	border: 1px solid #bbf7d0;
}

.mhm-rentiva-dashboard__notice.is-error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

.mhm-rentiva-dashboard__notice.is-warning {
	background: #fffbeb;
	color: #92400e;
	border: 1px solid #fde68a;
}

/* Payout request form */
.mhm-rentiva-dashboard__payout-form {
	display: flex;
	align-items: flex-end;
	gap: 16px;
	flex-wrap: wrap;
	margin-top: 16px;
}

.mhm-rentiva-dashboard__payout-form-group {
	flex: 1;
	min-width: 180px;
}

.mhm-rentiva-dashboard__payout-form-label {
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	color: #374151;
	margin-bottom: 6px;
}

.mhm-rentiva-dashboard__payout-form-input {
	width: 100%;
	padding: 10px 14px;
	border: 1.5px solid #d1d5db;
	border-radius: 8px;
	font-size: 1rem;
	font-weight: 600;
	color: #111827;
	box-sizing: border-box;
	transition: border-color 0.15s ease;
}

.mhm-rentiva-dashboard__payout-form-input:focus {
	outline: none;
	border-color: #2f54ff;
	box-shadow: 0 0 0 3px rgba(47, 84, 255, 0.1);
}

.mhm-rentiva-dashboard__payout-submit {
	padding: 11px 24px;
	background: #2f54ff;
	color: #ffffff;
	border: none;
	border-radius: 8px;
	font-size: 0.9375rem;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	transition: background 0.15s ease;
}

.mhm-rentiva-dashboard__payout-submit:hover {
	background: #1a40e8;
}

/* Payout history table */
.mhm-rentiva-dashboard__table-wrap {
	overflow-x: auto;
	border-radius: 10px;
	border: 1px solid #e4e8f2;
}

.mhm-rentiva-dashboard__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
}

.mhm-rentiva-dashboard__table thead tr {
	background: #f8faff;
	border-bottom: 1px solid #e4e8f2;
}

.mhm-rentiva-dashboard__table th {
	padding: 12px 16px;
	text-align: left;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	color: #8a94b0;
}

.mhm-rentiva-dashboard__table td {
	padding: 14px 16px;
	color: #374151;
	border-bottom: 1px solid #f3f4f6;
}

.mhm-rentiva-dashboard__table tbody tr:last-child td {
	border-bottom: none;
}

.mhm-rentiva-dashboard__table tbody tr:hover td {
	background: #f8faff;
}

.mhm-rentiva-dashboard__table td:first-child {
	font-weight: 600;
	color: #11192b;
}

.mhm-rentiva-dashboard__table .mhm-rentiva-dashboard__payout-amount {
	font-weight: 700;
	color: #2f54ff;
}

.mhm-rentiva-dashboard__table .mhm-rentiva-dashboard__empty-row td {
	text-align: center;
	padding: 40px 16px;
	color: #8a94b0;
}

/* Status badges */
.mhm-rentiva-dashboard__status {
	display: inline-block;
	padding: 3px 10px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.03em;
}

.mhm-rentiva-dashboard__status.is-pending   { background: #fffbeb; color: #92400e; }
.mhm-rentiva-dashboard__status.is-confirmed { background: #f0fdf4; color: #166534; }
.mhm-rentiva-dashboard__status.is-completed { background: #eff6ff; color: #1e40af; }
.mhm-rentiva-dashboard__status.is-cancelled { background: #fef2f2; color: #991b1b; }
.mhm-rentiva-dashboard__status.is-refunded  { background: #f3e8ff; color: #5b21b6; }

@media (max-width: 768px) {
	.mhm-rentiva-dashboard__payout-balance-card {
		grid-template-columns: 1fr;
	}
	.mhm-rentiva-dashboard__payout-form {
		flex-direction: column;
		align-items: stretch;
	}
	.mhm-rentiva-dashboard__payout-submit {
		width: 100%;
		text-align: center;
	}
}

/* ===============================
   OVERVIEW GRID (Bookings + Quick Actions)
================================= */
.mhm-rentiva-dashboard__overview-grid {
	display: grid;
	grid-template-columns: 1fr 280px;
	gap: 16px;
	align-items: start;
}

/* Quick Actions panel */
.mhm-rentiva-dashboard__quick-actions {
	background: #ffffff;
	border: 1px solid #e4e8f2;
	border-radius: 12px;
	padding: 20px;
}

.mhm-rentiva-dashboard__quick-actions h3 {
	margin: 0 0 16px;
	font-size: 16px;
	font-weight: 700;
	color: #1b2438;
}

.mhm-rentiva-dashboard__quick-actions-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.mhm-rentiva-dashboard__quick-action {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 12px 14px;
	background: #f6f8fc;
	border: 1px solid transparent;
	border-radius: 10px;
	text-decoration: none;
	color: #1b2438;
	font-weight: 600;
	font-size: 13px;
	transition: background 0.15s ease, border-color 0.15s ease;
}

.mhm-rentiva-dashboard__quick-action:hover {
	background: #eef2ff;
	border-color: #d4dbf5;
}

.mhm-rentiva-dashboard__quick-action.is-primary {
	background: linear-gradient(135deg, #2f54ff 0%, #1a40e8 100%);
	color: #ffffff;
	border-color: transparent;
	box-shadow: 0 4px 12px rgba(47, 84, 255, 0.25);
}

.mhm-rentiva-dashboard__quick-action.is-primary:hover {
	background: linear-gradient(135deg, #1a40e8 0%, #0f2fcc 100%);
}

.mhm-rentiva-dashboard__quick-action.is-primary .mhm-rentiva-dashboard__quick-action-icon {
	color: rgba(255, 255, 255, 0.85);
}

.mhm-rentiva-dashboard__quick-action-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	flex-shrink: 0;
	color: #6b748f;
}

.mhm-rentiva-dashboard__quick-action-icon svg {
	width: 20px;
	height: 20px;
	display: block;
}

.mhm-rentiva-dashboard__quick-action-label {
	flex: 1;
}

.mhm-rentiva-dashboard__quick-action-arrow {
	font-size: 18px;
	line-height: 1;
	opacity: 0.5;
	transition: transform 0.15s ease;
}

.mhm-rentiva-dashboard__quick-action:hover .mhm-rentiva-dashboard__quick-action-arrow {
	transform: translateX(2px);
	opacity: 0.8;
}

@media (max-width: 1024px) {
	.mhm-rentiva-dashboard__overview-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 640px) {
	.mhm-rentiva-dashboard__quick-actions {
		padding: 16px;
	}
}

/* ===============================
   VENDOR LISTINGS PAGE
================================= */
.mhm-vendor-listings-page__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 24px;
}

.mhm-vendor-listings-page__title {
	margin: 0 0 4px;
	font-size: 22px;
	font-weight: 800;
	color: #11192b;
	letter-spacing: -0.02em;
}

.mhm-vendor-listings-page__subtitle {
	margin: 0;
	font-size: 13px;
	color: #6b748f;
	font-weight: 500;
}

.mhm-vendor-listings-page__add-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 10px 20px;
	background: linear-gradient(135deg, #2f54ff 0%, #1a40e8 100%);
	color: #ffffff;
	border: none;
	border-radius: 10px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	box-shadow: 0 4px 14px rgba(47, 84, 255, 0.25);
	transition: all 0.15s ease;
	flex-shrink: 0;
}

.mhm-vendor-listings-page__add-btn:hover {
	background: linear-gradient(135deg, #1a40e8 0%, #0f2fcc 100%);
	box-shadow: 0 6px 20px rgba(47, 84, 255, 0.35);
	transform: translateY(-1px);
}

.mhm-vendor-listings-page__add-btn:active {
	transform: scale(0.97);
}

.mhm-vendor-listings-page__add-btn svg {
	flex-shrink: 0;
}

/* Add Vehicle Panel */
.mhm-vendor-listings-page__add-panel {
	margin-bottom: 28px;
}

.mhm-vendor-listings-page__add-panel-inner {
	background: #ffffff;
	border-radius: 14px;
	box-shadow: 0 12px 40px rgba(24, 28, 31, 0.08);
	overflow: hidden;
}

.mhm-vendor-listings-page__add-panel-head {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 24px;
	border-bottom: 1px solid #edf1f8;
}

.mhm-vendor-listings-page__add-panel-head strong {
	flex: 1;
	font-size: 15px;
	font-weight: 700;
	color: #11192b;
}

.mhm-vendor-listings-page__add-panel-accent {
	width: 4px;
	height: 24px;
	background: #2f54ff;
	border-radius: 4px;
	flex-shrink: 0;
}

.mhm-vendor-listings-page__add-panel-close {
	background: none;
	border: none;
	font-size: 22px;
	color: #6b748f;
	cursor: pointer;
	line-height: 1;
	padding: 4px;
	border-radius: 6px;
	transition: background 0.15s ease;
}

.mhm-vendor-listings-page__add-panel-close:hover {
	background: #f3f4f6;
	color: #11192b;
}

.mhm-vendor-listings-page__add-panel-body {
	padding: 24px;
}

/* Vehicle Card */
.mhm-vendor-listing-card {
	display: flex;
	gap: 20px;
	background: #ffffff;
	border: 1px solid #e4e8f2;
	border-radius: 14px;
	padding: 20px;
	margin-bottom: 12px;
	transition: box-shadow 0.2s ease;
}

.mhm-vendor-listing-card:hover {
	box-shadow: 0 12px 32px rgba(24, 28, 31, 0.06);
}

.mhm-vendor-listing-card.is-rejected {
	opacity: 0.75;
}

.mhm-vendor-listing-card.is-rejected:hover {
	opacity: 1;
}

/* Thumbnail */
.mhm-vendor-listing-card__thumb {
	flex-shrink: 0;
	width: 180px;
	height: 120px;
	border-radius: 10px;
	overflow: hidden;
	background: #f3f4f6;
}

.mhm-vendor-listing-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.mhm-vendor-listing-card:hover .mhm-vendor-listing-card__thumb img {
	transform: scale(1.05);
}

.mhm-vendor-listing-card.is-rejected .mhm-vendor-listing-card__thumb {
	filter: grayscale(1);
}

.mhm-vendor-listing-card__thumb-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #c4c9d9;
}

/* Info */
.mhm-vendor-listing-card__info {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
}

.mhm-vendor-listing-card__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.mhm-vendor-listing-card__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.mhm-vendor-listing-card__name {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	color: #11192b;
	letter-spacing: -0.01em;
}

/* Price */
.mhm-vendor-listing-card__price {
	text-align: right;
	flex-shrink: 0;
}

.mhm-vendor-listing-card__price-label {
	display: block;
	font-size: 11px;
	color: #6b748f;
	font-weight: 500;
	margin-bottom: 2px;
}

.mhm-vendor-listing-card__price-value {
	font-size: 22px;
	font-weight: 800;
	color: #2f54ff;
	letter-spacing: -0.02em;
	line-height: 1;
}

.mhm-vendor-listing-card__price-value small {
	font-size: 12px;
	font-weight: 500;
	color: #6b748f;
}

.mhm-vendor-listing-card.is-rejected .mhm-vendor-listing-card__price-value {
	color: #9ca3af;
}

/* Details */
.mhm-vendor-listing-card__details {
	margin: 6px 0 0;
	font-size: 13px;
	color: #6b748f;
	display: flex;
	align-items: center;
	gap: 6px;
}

.mhm-vendor-listing-card__details strong {
	color: #374151;
}

.mhm-vendor-listing-card__sep {
	color: #d1d5db;
}

/* Notices */
.mhm-vendor-listing-card__notice {
	display: flex;
	align-items: flex-start;
	gap: 8px;
	margin-top: 10px;
	padding: 10px 14px;
	border-radius: 8px;
	font-size: 13px;
	font-weight: 500;
	line-height: 1.5;
}

.mhm-vendor-listing-card__notice svg {
	flex-shrink: 0;
	margin-top: 2px;
}

.mhm-vendor-listing-card__notice.is-warning {
	background: #fffbeb;
	color: #92400e;
	border: 1px solid #fde68a;
}

.mhm-vendor-listing-card__notice.is-error {
	background: #fef2f2;
	color: #991b1b;
	border: 1px solid #fecaca;
}

/* Actions */
.mhm-vendor-listing-card__actions {
	margin-top: auto;
	padding-top: 10px;
	display: flex;
	gap: 8px;
}

.mhm-vendor-listing-card__action {
	display: inline-flex;
	align-items: center;
	padding: 7px 16px;
	font-size: 13px;
	font-weight: 600;
	border-radius: 8px;
	text-decoration: none;
	transition: all 0.15s ease;
}

.mhm-vendor-listing-card__action.is-outline {
	color: #2f54ff;
	border: 1.5px solid rgba(47, 84, 255, 0.15);
	background: transparent;
}

.mhm-vendor-listing-card__action.is-outline:hover {
	border-color: rgba(47, 84, 255, 0.4);
	background: #eef2ff;
}

.mhm-vendor-listing-card__action.is-caution {
	color: #b45309;
	border: 1.5px solid rgba(180, 83, 9, 0.2);
	background: transparent;
	cursor: pointer;
}

.mhm-vendor-listing-card__action.is-caution:hover {
	border-color: rgba(180, 83, 9, 0.4);
	background: #fffbeb;
}

.mhm-vendor-listing-card__action.is-success {
	color: #15803d;
	border: 1.5px solid rgba(21, 128, 61, 0.2);
	background: transparent;
	cursor: pointer;
}

.mhm-vendor-listing-card__action.is-success:hover {
	border-color: rgba(21, 128, 61, 0.4);
	background: #f0fdf4;
}

.mhm-vendor-listing-card__action.is-danger {
	color: #dc2626;
	border: 1.5px solid rgba(220, 38, 38, 0.2);
	background: transparent;
	cursor: pointer;
}

.mhm-vendor-listing-card__action.is-danger:hover {
	border-color: rgba(220, 38, 38, 0.4);
	background: #fef2f2;
}

/* Empty State */
.mhm-vendor-listings-page__empty {
	text-align: center;
	padding: 56px 24px;
	background: #f9fafb;
	border-radius: 16px;
	border: 3px dashed #e0e3e6;
}

.mhm-vendor-listings-page__empty-icon {
	width: 72px;
	height: 72px;
	margin: 0 auto 20px;
	background: #e6e8ec;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #9ca3af;
}

.mhm-vendor-listings-page__empty-title {
	margin: 0 0 8px;
	font-size: 17px;
	font-weight: 700;
	color: #11192b;
}

.mhm-vendor-listings-page__empty-text {
	margin: 0;
	font-size: 14px;
	color: #6b748f;
	max-width: 360px;
	margin-left: auto;
	margin-right: auto;
	line-height: 1.6;
}

/* Listings Responsive */
@media (max-width: 768px) {
	.mhm-vendor-listings-page__header {
		flex-direction: column;
		gap: 12px;
	}

	.mhm-vendor-listings-page__add-btn {
		width: 100%;
		justify-content: center;
	}

	.mhm-vendor-listing-card {
		flex-direction: column;
	}

	.mhm-vendor-listing-card__thumb {
		width: 100%;
		height: 160px;
	}

	.mhm-vendor-listing-card__top {
		flex-direction: column;
		gap: 8px;
	}

	.mhm-vendor-listing-card__price {
		text-align: left;
	}
}

/* ===================================================================
   VENDOR BOOKINGS PAGE
   =================================================================== */

/* Tab Navigation */
.mhm-vendor-bookings-page__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}

.mhm-vendor-bookings-page__title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0;
}

.mhm-vendor-bookings-page__tabs {
	display: flex;
	gap: 4px;
	border-bottom: 1px solid #e2e8f0;
	margin-bottom: 24px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.mhm-vendor-bookings-page__tab {
	padding: 10px 16px;
	font-size: 0.8125rem;
	font-weight: 500;
	color: #64748b;
	text-decoration: none;
	border-bottom: 2px solid transparent;
	white-space: nowrap;
	transition: color 0.2s, border-color 0.2s;
}

.mhm-vendor-bookings-page__tab:hover {
	color: #1e293b;
}

.mhm-vendor-bookings-page__tab.is-active {
	color: #4f46e5;
	border-bottom-color: #4f46e5;
	font-weight: 600;
}

/* Stats Summary */
.mhm-vendor-bookings-page__stats {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
	margin-bottom: 24px;
}

.mhm-vendor-bookings-page__stat {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 14px;
}

.mhm-vendor-bookings-page__stat-icon {
	width: 40px;
	height: 40px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.mhm-vendor-bookings-page__stat.is-pending .mhm-vendor-bookings-page__stat-icon {
	background: #fff7ed;
	color: #ea580c;
}
.mhm-vendor-bookings-page__stat.is-active .mhm-vendor-bookings-page__stat-icon {
	background: #eff6ff;
	color: #2563eb;
}
.mhm-vendor-bookings-page__stat.is-completed .mhm-vendor-bookings-page__stat-icon {
	background: #f0fdf4;
	color: #16a34a;
}
.mhm-vendor-bookings-page__stat.is-revenue .mhm-vendor-bookings-page__stat-icon {
	background: #faf5ff;
	color: #9333ea;
}

.mhm-vendor-bookings-page__stat-info {
	display: flex;
	flex-direction: column;
}

.mhm-vendor-bookings-page__stat-value {
	font-size: 1.5rem;
	font-weight: 800;
	line-height: 1.2;
	color: #1e293b;
}

.mhm-vendor-bookings-page__stat-label {
	font-size: 0.6875rem;
	font-weight: 600;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

/* Booking Cards List */
.mhm-vendor-bookings-page__list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.mhm-vendor-booking-card {
	background: #fff;
	border-radius: 12px;
	padding: 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	transition: background 0.2s;
}

.mhm-vendor-booking-card:hover {
	background: #f8fafc;
}

.mhm-vendor-booking-card.is-pending-highlight {
	border-left: 3px solid #f59e0b;
}

/* Thumbnail */
.mhm-vendor-booking-card__thumb {
	width: 120px;
	height: 80px;
	border-radius: 10px;
	overflow: hidden;
	flex-shrink: 0;
	background: #f1f5f9;
}

.mhm-vendor-booking-card__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mhm-vendor-booking-card__thumb-placeholder {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #cbd5e1;
}

/* Identity Column */
.mhm-vendor-booking-card__identity {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.mhm-vendor-booking-card__vehicle-name {
	font-size: 0.9375rem;
	font-weight: 700;
	color: #1e293b;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.mhm-vendor-booking-card__customer-name {
	font-size: 0.8125rem;
	color: #64748b;
	display: flex;
	align-items: center;
	gap: 6px;
}

.mhm-vendor-booking-card__customer-name svg {
	flex-shrink: 0;
	color: #94a3b8;
}

.mhm-vendor-booking-card__ref {
	font-size: 0.75rem;
	color: #94a3b8;
	font-family: monospace;
}

/* Dates Column */
.mhm-vendor-booking-card__dates,
.mhm-vendor-booking-card__pricing {
	display: flex;
	flex-direction: column;
	gap: 2px;
	flex-shrink: 0;
}

.mhm-vendor-booking-card__dates-label {
	font-size: 0.625rem;
	font-weight: 700;
	color: #94a3b8;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.mhm-vendor-booking-card__dates-value {
	font-size: 0.8125rem;
	font-weight: 600;
	color: #334155;
}

.mhm-vendor-booking-card__dates-meta {
	font-size: 0.75rem;
	color: #94a3b8;
}

/* Price */
.mhm-vendor-booking-card__price {
	font-size: 1.0625rem;
	font-weight: 700;
	color: #4f46e5;
}

/* Action Buttons */
.mhm-vendor-booking-card__actions {
	display: flex;
	gap: 8px;
	flex-shrink: 0;
}

.mhm-vendor-booking-card__action {
	padding: 8px 18px;
	border-radius: 8px;
	font-size: 0.8125rem;
	font-weight: 600;
	border: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: opacity 0.2s, background 0.2s;
}

.mhm-vendor-booking-card__action.is-approve {
	background: linear-gradient(135deg, #4f46e5 0%, #6366f1 100%);
	color: #fff;
	box-shadow: 0 2px 8px rgba(79, 70, 229, 0.25);
}

.mhm-vendor-booking-card__action.is-approve:hover {
	opacity: 0.9;
}

.mhm-vendor-booking-card__action.is-reject {
	background: transparent;
	color: #ef4444;
	border: 2px solid rgba(239, 68, 68, 0.25);
}

.mhm-vendor-booking-card__action.is-reject:hover {
	background: rgba(239, 68, 68, 0.05);
}

/* Empty State */
.mhm-vendor-bookings-page__empty {
	text-align: center;
	padding: 60px 20px;
	border: 2px dashed #e2e8f0;
	border-radius: 16px;
	background: #fafbfc;
}

.mhm-vendor-bookings-page__empty-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto 16px;
	background: #f1f5f9;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #94a3b8;
}

.mhm-vendor-bookings-page__empty-title {
	font-size: 1rem;
	font-weight: 600;
	color: #1e293b;
	margin: 0 0 6px;
}

.mhm-vendor-bookings-page__empty-text {
	font-size: 0.8125rem;
	color: #94a3b8;
	margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
	.mhm-vendor-bookings-page__stats {
		grid-template-columns: repeat(2, 1fr);
	}

	.mhm-vendor-booking-card {
		flex-wrap: wrap;
	}

	.mhm-vendor-booking-card__dates,
	.mhm-vendor-booking-card__pricing {
		min-width: 0;
	}
}

@media (max-width: 600px) {
	.mhm-vendor-bookings-page__stats {
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}

	.mhm-vendor-bookings-page__stat {
		padding: 14px;
	}

	.mhm-vendor-bookings-page__stat-value {
		font-size: 1.25rem;
	}

	.mhm-vendor-booking-card {
		flex-direction: column;
		align-items: flex-start;
		gap: 14px;
	}

	.mhm-vendor-booking-card__thumb {
		width: 100%;
		height: 140px;
	}

	.mhm-vendor-booking-card__actions {
		width: 100%;
	}

	.mhm-vendor-booking-card__action {
		flex: 1;
		justify-content: center;
	}
}

/* ============================================================
   Vendor Reliability & Penalties Tab
   ============================================================ */

.mhm-vendor-reliability {
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.mhm-vendor-reliability__subtitle {
	font-size: 0.875rem;
	color: #64748b;
	margin: -10px 0 0;
}

/* ── Score Card ──────────────────────────────── */

.mhm-vendor-reliability__score-card {
	display: flex;
	align-items: flex-start;
	gap: 32px;
	background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
	border-radius: 20px;
	padding: 32px;
	box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
}

.mhm-vendor-reliability__score-ring-wrap {
	position: relative;
	flex-shrink: 0;
	width: 120px;
	height: 120px;
}

.mhm-vendor-reliability__ring {
	width: 120px;
	height: 120px;
	transform: rotate(0deg);
}

.mhm-vendor-reliability__ring-inner {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
}

.mhm-vendor-reliability__ring-score {
	font-size: 2rem;
	font-weight: 800;
	line-height: 1;
}

.mhm-vendor-reliability__ring-max {
	font-size: 0.75rem;
	color: #94a3b8;
	font-weight: 600;
}

.mhm-vendor-reliability__score-info {
	flex: 1;
	min-width: 0;
}

.mhm-vendor-reliability__score-badge {
	display: inline-flex;
	align-items: center;
	padding: 3px 12px;
	border-radius: 20px;
	font-size: 0.75rem;
	font-weight: 700;
	border: 1px solid;
	margin-bottom: 10px;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.mhm-vendor-reliability__score-title {
	font-size: 1.25rem;
	font-weight: 700;
	color: #f8fafc;
	margin: 0 0 8px;
}

.mhm-vendor-reliability__score-desc {
	font-size: 0.8125rem;
	color: #94a3b8;
	margin: 0 0 18px;
	line-height: 1.6;
}

/* Tier pills row */

.mhm-vendor-reliability__tiers {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.mhm-vendor-reliability__tier {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	border-radius: 20px;
	border: 1px solid #2d3748;
	background: #1e293b;
	font-size: 0.75rem;
	color: #94a3b8;
}

.mhm-vendor-reliability__tier.is-active {
	color: #f8fafc;
	font-weight: 700;
}

.mhm-vendor-reliability__tier-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	flex-shrink: 0;
}

.mhm-vendor-reliability__tier-range {
	color: inherit;
	opacity: 0.7;
}

/* ── Section ─────────────────────────────────── */

.mhm-vendor-reliability__section {
	background: #ffffff;
	border: 1px solid #e4e8f2;
	border-radius: 16px;
	padding: 24px 24px 20px;
	box-shadow: 0 2px 8px rgba(22, 34, 66, 0.04);
}

.mhm-vendor-reliability__section-title {
	font-size: 1rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 6px;
}

.mhm-vendor-reliability__section-desc {
	font-size: 0.8125rem;
	color: #64748b;
	margin: 0 0 18px;
	line-height: 1.6;
}

/* ── Score Table ─────────────────────────────── */

.mhm-vendor-reliability__table-wrap {
	overflow-x: auto;
	border-radius: 10px;
	border: 1px solid #e4e8f2;
}

.mhm-vendor-reliability__table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
}

.mhm-vendor-reliability__table th {
	background: #f8fafc;
	padding: 10px 16px;
	text-align: left;
	font-size: 0.75rem;
	font-weight: 700;
	color: #64748b;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	border-bottom: 1px solid #e4e8f2;
}

.mhm-vendor-reliability__table td {
	padding: 12px 16px;
	border-bottom: 1px solid #f1f5f9;
	vertical-align: middle;
	color: #334155;
}

.mhm-vendor-reliability__table tr:last-child td {
	border-bottom: none;
}

.mhm-vendor-reliability__table tr.is-bonus td {
	background: #f0fdf4;
}

.mhm-vendor-reliability__tag {
	display: inline-block;
	padding: 2px 8px;
	border-radius: 6px;
	font-size: 0.7rem;
	font-weight: 700;
	margin-right: 6px;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

.mhm-vendor-reliability__tag.is-green  { background: #dcfce7; color: #166534; }
.mhm-vendor-reliability__tag.is-red    { background: #fee2e2; color: #991b1b; }
.mhm-vendor-reliability__tag.is-orange { background: #fff7ed; color: #9a3412; }

strong.is-green  { color: #16a34a; }
strong.is-red    { color: #dc2626; }
strong.is-orange { color: #ea580c; }

/* ── Penalty Cards ───────────────────────────── */

.mhm-vendor-reliability__penalty-cards {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 14px;
	margin-bottom: 14px;
}

.mhm-vendor-reliability__penalty-card {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 18px;
	border-radius: 14px;
	border: 1px solid #e4e8f2;
	background: #f9fbff;
}

.mhm-vendor-reliability__penalty-card.is-free     { border-color: #bbf7d0; background: #f0fdf4; }
.mhm-vendor-reliability__penalty-card.is-moderate { border-color: #fed7aa; background: #fff7ed; }
.mhm-vendor-reliability__penalty-card.is-severe   { border-color: #fecaca; background: #fef2f2; }

.mhm-vendor-reliability__penalty-number {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.875rem;
	font-weight: 800;
	flex-shrink: 0;
	background: #e2e8f0;
	color: #334155;
}

.mhm-vendor-reliability__penalty-card.is-free .mhm-vendor-reliability__penalty-number     { background: #dcfce7; color: #166534; }
.mhm-vendor-reliability__penalty-card.is-moderate .mhm-vendor-reliability__penalty-number { background: #fed7aa; color: #9a3412; }
.mhm-vendor-reliability__penalty-card.is-severe .mhm-vendor-reliability__penalty-number   { background: #fecaca; color: #991b1b; }

.mhm-vendor-reliability__penalty-title {
	font-size: 0.8125rem;
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 4px;
}

.mhm-vendor-reliability__penalty-amount {
	font-size: 1rem;
	font-weight: 800;
	margin-bottom: 6px;
}

.mhm-vendor-reliability__penalty-amount.is-green  { color: #16a34a; }
.mhm-vendor-reliability__penalty-amount.is-orange { color: #ea580c; }
.mhm-vendor-reliability__penalty-amount.is-red    { color: #dc2626; }

.mhm-vendor-reliability__penalty-note {
	font-size: 0.75rem;
	color: #64748b;
	line-height: 1.5;
}

.mhm-vendor-reliability__penalty-footnote {
	font-size: 0.8rem;
	color: #94a3b8;
	margin: 0;
	font-style: italic;
}

/* ── Why Section ─────────────────────────────── */

.mhm-vendor-reliability__why {
	border-color: #e0e7ff;
	background: linear-gradient(135deg, #f5f7ff 0%, #ffffff 100%);
}

.mhm-vendor-reliability__why-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.mhm-vendor-reliability__why-card {
	padding: 18px;
	border-radius: 12px;
	border: 1px solid #e0e7ff;
	background: #ffffff;
}

.mhm-vendor-reliability__why-icon {
	width: 36px;
	height: 36px;
	border-radius: 10px;
	background: #e0e7ff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4338ca;
	margin-bottom: 12px;
}

.mhm-vendor-reliability__why-icon svg {
	width: 18px;
	height: 18px;
}

.mhm-vendor-reliability__why-card h4 {
	font-size: 0.875rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 6px;
}

.mhm-vendor-reliability__why-card p {
	font-size: 0.8125rem;
	color: #64748b;
	margin: 0;
	line-height: 1.6;
}

/* ── Score History ───────────────────────────── */

.mhm-vendor-reliability__history-table td {
	font-size: 0.8125rem;
}

.mhm-vendor-reliability__history-date {
	white-space: nowrap;
	color: #94a3b8;
	font-size: 0.75rem !important;
}

.mhm-vendor-reliability__history-event {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 10px;
	border-radius: 6px;
	font-size: 0.75rem;
	font-weight: 600;
}

.mhm-vendor-reliability__history-event.is-pause    { background: #eff6ff; color: #1d4ed8; }
.mhm-vendor-reliability__history-event.is-withdraw { background: #fff1f2; color: #be123c; }
.mhm-vendor-reliability__history-event.is-cancel   { background: #fff7ed; color: #c2410c; }
.mhm-vendor-reliability__history-event.is-complete { background: #f0fdf4; color: #15803d; }
.mhm-vendor-reliability__history-event.is-cron     { background: #f8fafc; color: #475569; }

.mhm-vendor-reliability__history-vehicle {
	color: #334155;
	max-width: 180px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.mhm-vendor-reliability__history-na {
	color: #cbd5e1;
}

.mhm-vendor-reliability__history-score {
	font-weight: 700;
	color: #1e293b;
	text-align: right;
}

.is-neutral { color: #94a3b8; }

.mhm-vendor-reliability__history-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
	padding: 32px 20px;
	color: #94a3b8;
	text-align: center;
}

.mhm-vendor-reliability__history-empty svg {
	width: 36px;
	height: 36px;
	opacity: 0.4;
}

.mhm-vendor-reliability__history-empty p {
	margin: 0;
	font-size: 0.875rem;
}

/* ── Responsive ──────────────────────────────── */

@media (max-width: 900px) {
	.mhm-vendor-reliability__score-card {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}

	.mhm-vendor-reliability__tiers {
		justify-content: center;
	}

	.mhm-vendor-reliability__penalty-cards,
	.mhm-vendor-reliability__why-grid {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 600px) {
	.mhm-vendor-reliability__score-card {
		padding: 22px 18px;
	}

	.mhm-vendor-reliability__section {
		padding: 18px 16px;
	}

	.mhm-vendor-reliability__penalty-card {
		flex-direction: column;
		gap: 10px;
	}
}
}
