:root {
	--md-primary: #005ac1;
	--md-primary-dark: #004ba0;
	--md-primary-container: #d8e2ff;
	--md-on-primary: #ffffff;
	--md-on-primary-container: #001a41;
	--md-surface: #fdfcff;
	--md-surface-dim: #f4f6fb;
	--md-surface-variant: #e0e2ec;
	--md-on-surface: #1a1c1e;
	--md-on-surface-variant: #44474f;
	--md-outline: #747775;
	--md-radius-md: 12px;
	--md-radius-lg: 16px;
	--md-radius-xl: 28px;
	--md-shadow-1: 0 1px 2px rgba(0,0,0,.04), 0 4px 12px rgba(0,0,0,.06);
	--md-shadow-2: 0 2px 4px rgba(0,0,0,.03), 0 12px 28px rgba(0,0,0,.07);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body.page-wrap {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	font-family: 'Open Sans', system-ui, -apple-system, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: var(--md-on-surface);
	background: var(--md-surface-dim);
	-webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }
a.m3-btn-primary, a.m3-btn-tonal, a.m3-btn-outlined { text-decoration: none; }

.material-symbols-outlined {
	font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
	vertical-align: middle;
	line-height: 1;
}

/* Layout */
.page-container {
	width: 100%;
	max-width: 72rem;
	margin-left: auto;
	margin-right: auto;
	padding: 1.25rem 1rem;
}
@media (min-width: 640px) {
	.page-container { padding: 2rem 1.5rem; }
}

/* Header */
.app-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(255,255,255,.96);
	backdrop-filter: blur(8px);
	border-bottom: 1px solid rgba(226,232,240,.9);
}
.app-header-inner {
	max-width: 72rem;
	margin: 0 auto;
	height: 4rem;
	padding: 0 1rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
}
@media (min-width: 640px) {
	.app-header-inner { padding: 0 1.5rem; }
}
.app-logo img { height: 2.25rem; width: auto; }
@media (min-width: 640px) {
	.app-logo img { height: 2.5rem; }
}
.app-header-actions {
	display: none;
	align-items: center;
	gap: 1rem;
}
@media (min-width: 640px) {
	.app-header-actions { display: flex; }
}
.app-phone {
	display: flex;
	align-items: center;
	gap: .5rem;
	font-size: .875rem;
	color: var(--md-on-surface-variant);
	text-decoration: none;
}
.app-phone:hover { color: var(--md-primary); }
.app-icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	border: none;
	border-radius: 9999px;
	background: transparent;
	color: var(--md-on-surface);
	cursor: pointer;
}
.app-icon-btn:hover { background: var(--md-surface-dim); }
@media (min-width: 640px) {
	#menu-toggle { display: none; }
}

/* Mobile drawer */
#menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 50;
	background: rgba(0,0,0,.4);
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease;
}
#menu-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}
#mobile-menu {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 51;
	width: min(100%, 320px);
	height: 100%;
	display: flex;
	flex-direction: column;
	background: #fff;
	box-shadow: var(--md-shadow-2);
	transform: translateX(100%);
	transition: transform .25s ease;
}
#mobile-menu.is-open { transform: translateX(0); }
@media (min-width: 640px) {
	#mobile-menu, #menu-overlay { display: none !important; }
}
.drawer-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem;
	border-bottom: 1px solid #f1f5f9;
}
.drawer-nav {
	display: flex;
	flex-direction: column;
	gap: .25rem;
	padding: 1rem;
}
.drawer-link {
	display: flex;
	align-items: center;
	gap: .75rem;
	padding: .75rem 1rem;
	border-radius: var(--md-radius-md);
	color: var(--md-on-surface);
	text-decoration: none;
}
.drawer-link:hover { background: var(--md-surface-dim); }

main { flex: 1; }

.app-footer {
	margin-top: auto;
	border-top: 1px solid #e2e8f0;
	background: #fff;
	padding: 1.5rem 0;
	text-align: center;
	font-size: .875rem;
	color: var(--md-on-surface-variant);
}

/* Cards */
.m3-card, .card {
	background: #fff;
	border: 1px solid #f1f5f9;
	border-radius: var(--md-radius-lg);
	box-shadow: var(--md-shadow-1);
	overflow: hidden;
}
.m3-card-body, .card-body { padding: 1rem; }
@media (min-width: 640px) {
	.m3-card-body, .card-body { padding: 1.5rem; }
}
.card-header {
	border-bottom: 1px solid #f1f5f9;
	padding: .75rem 1rem;
}
@media (min-width: 640px) {
	.card-header { padding: .75rem 1.5rem; }
}

.m3-section-title, .card-title {
	margin: 0 0 .25rem;
	font-size: 1.125rem;
	font-weight: 500;
	color: var(--md-on-surface);
}
@media (min-width: 640px) {
	.m3-section-title, .card-title { font-size: 1.25rem; }
}
.m3-section-sub {
	margin: 0 0 1rem;
	font-size: .875rem;
	color: var(--md-on-surface-variant);
}

/* Forms */
.m3-label, .form-label {
	display: block;
	margin-bottom: .375rem;
	font-size: .875rem;
	font-weight: 500;
	color: var(--md-on-surface-variant);
}
.m3-input, .form-control,
.m3-select, .form-select, select.form-control {
	width: 100%;
	padding: .75rem 1rem;
	font-size: 1rem;
	font-family: inherit;
	color: var(--md-on-surface);
	background: #fff;
	border: 1px solid #cbd5e1;
	border-radius: var(--md-radius-md);
	transition: border-color .2s, box-shadow .2s;
	-webkit-appearance: none;
	appearance: none;
}
.m3-select, .form-select, select.form-control {
	padding-right: 2.5rem;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2344474f' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right .75rem center;
	background-size: 1.25rem;
}
.m3-input:focus, .form-control:focus,
.m3-select:focus, .form-select:focus, select.form-control:focus {
	outline: none;
	border-color: var(--md-primary);
	box-shadow: 0 0 0 3px rgba(0,90,193,.15);
}

/* Buttons — Material 3 filled / tonal / outlined */
.m3-btn,
.btn,
a.m3-btn-primary,
a.m3-btn-tonal,
a.m3-btn-outlined,
a.m3-btn-success,
button.m3-btn-primary,
button.m3-btn-tonal,
button.m3-btn-outlined,
button.m3-btn-success,
input[type="submit"].m3-btn-primary {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: .5rem;
	min-height: 2.5rem;
	padding: 0 1.25rem;
	font-size: .875rem;
	font-weight: 500;
	font-family: inherit;
	line-height: 1.2;
	border: none;
	border-radius: 9999px;
	cursor: pointer;
	text-decoration: none;
	white-space: nowrap;
	transition: background .2s, box-shadow .2s, transform .1s;
	-webkit-tap-highlight-color: transparent;
	-webkit-appearance: none;
	appearance: none;
	box-sizing: border-box;
}
.m3-btn .material-symbols-outlined,
.btn .material-symbols-outlined,
a.m3-btn-primary .material-symbols-outlined,
a.m3-btn-tonal .material-symbols-outlined,
a.m3-btn-outlined .material-symbols-outlined,
a.m3-btn-success .material-symbols-outlined {
	font-size: 1.25rem;
}
.m3-btn:active, .btn:active { transform: scale(.98); }
.m3-btn:disabled, .btn:disabled,
.m3-btn-primary:disabled, .btn-primary:disabled {
	opacity: .55;
	cursor: not-allowed;
	transform: none;
}

.m3-btn-primary, .btn-primary {
	background: var(--md-primary);
	color: var(--md-on-primary) !important;
	box-shadow: var(--md-shadow-1);
}
.m3-btn-primary:hover, .btn-primary:hover { background: var(--md-primary-dark); }

.m3-btn-tonal {
	background: var(--md-primary-container);
	color: var(--md-on-primary-container) !important;
	box-shadow: none;
}
.m3-btn-tonal:hover { background: #c2d4ff; }

.m3-btn-outlined {
	background: transparent;
	color: var(--md-primary) !important;
	border: 1px solid var(--md-outline);
	box-shadow: none;
}
.m3-btn-outlined:hover { background: rgba(216,226,255,.5); }

.m3-btn-success, .btn-success {
	background: #059669;
	color: #fff !important;
	box-shadow: var(--md-shadow-1);
}
.m3-btn-success:hover, .btn-success:hover { background: #047857; }

/* Size modifiers */
.m3-btn-sm, .btn-sm {
	min-height: 2.25rem;
	padding: 0 1rem;
	font-size: .8125rem;
}
.m3-btn-sm .material-symbols-outlined,
.btn-sm .material-symbols-outlined,
a.m3-btn-sm .material-symbols-outlined {
	font-size: 1.125rem;
}

.m3-btn-lg, .btn-lg {
	min-height: 3rem;
	padding: 0 1.75rem;
	font-size: .9375rem;
}

.m3-btn-block {
	width: 100%;
}

.form-actions {
	display: flex;
	justify-content: flex-start;
	padding-top: .25rem;
}
@media (min-width: 640px) {
	.form-actions .m3-btn-block { width: auto; min-width: 11rem; }
}

/* Chips & badges */
.m3-chip, .badge {
	display: inline-flex;
	align-items: center;
	padding: .25rem .75rem;
	font-size: .75rem;
	font-weight: 500;
	border-radius: 8px;
	background: var(--md-surface-variant);
	color: var(--md-on-surface-variant);
}

/* Alerts */
.m3-alert-info, .alert-primary, .alert-info {
	padding: .75rem 1rem;
	font-size: .875rem;
	color: var(--md-on-primary-container);
	background: rgba(216,226,255,.45);
	border: 1px solid rgba(0,90,193,.15);
	border-radius: var(--md-radius-md);
}
.m3-alert-warning, .alert-warning {
	padding: .75rem 1rem;
	font-size: .875rem;
	color: #78350f;
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: var(--md-radius-md);
}
.m3-alert-danger, .alert-danger {
	padding: .75rem 1rem;
	font-size: .875rem;
	color: #991b1b;
	background: #fef2f2;
	border: 1px solid #fecaca;
	border-radius: var(--md-radius-md);
}

.m3-checkbox, .form-check-input {
	width: 1.125rem;
	height: 1.125rem;
	accent-color: var(--md-primary);
}

/* Time slots (booking) */
.time-slots-head {
	display: flex;
	align-items: center;
	gap: .5rem;
	margin-bottom: .75rem;
}
.time-slots-head .m3-section-title { margin: 0; }
.time-slots-wrap {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
}
.time-slot,
.time-slot-available,
.time-slot-disabled {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 4.5rem;
	min-height: 2.5rem;
	padding: .625rem 1rem;
	font-size: .875rem;
	font-weight: 500;
	font-family: inherit;
	border-radius: 9999px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: background .2s, box-shadow .2s, transform .1s;
	box-sizing: border-box;
}
.time-slot-available {
	background: var(--md-primary);
	color: #fff !important;
	box-shadow: var(--md-shadow-1);
}
.time-slot-available:hover { background: var(--md-primary-dark); }
.time-slot-available:active { transform: scale(.98); }
.time-slot-disabled {
	background: #f1f5f9;
	color: #94a3b8 !important;
	border: 1px solid #e2e8f0;
	pointer-events: none;
	cursor: default;
}

/* Home page (kota) — Tailwind-inspired motion (spin/ping/pulse/bounce) */
@keyframes homeFadeUp {
	from { opacity: 0; transform: translateY(1.25rem); }
	to { opacity: 1; transform: translateY(0); }
}
@keyframes homePulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50% { opacity: .88; transform: scale(1.04); }
}
@keyframes homeFloat {
	0%, 100% { transform: translate(0, 0) scale(1); }
	50% { transform: translate(6px, -10px) scale(1.05); }
}
@keyframes homeShimmer {
	0% { background-position: -200% center; }
	100% { background-position: 200% center; }
}
@keyframes homeSpin {
	to { transform: rotate(360deg); }
}

.home-page,
.motion-page {
	position: relative;
	padding-top: 1rem;
	overflow: hidden;
}
@media (min-width: 640px) {
	.home-page,
	.motion-page { padding-top: 1.5rem; }
}
.home-page-inner,
.motion-page-inner { position: relative; z-index: 1; }

.home-page-bg {
	position: absolute;
	inset: 0;
	pointer-events: none;
	z-index: 0;
}
.home-orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(48px);
	opacity: .45;
	animation: homeFloat 14s ease-in-out infinite;
}
.home-orb-1 {
	width: 16rem;
	height: 16rem;
	top: -4rem;
	right: -3rem;
	background: radial-gradient(circle, rgba(0, 90, 193, .22) 0%, transparent 70%);
	animation-delay: 0s;
}
.home-orb-2 {
	width: 12rem;
	height: 12rem;
	bottom: 2rem;
	left: -2rem;
	background: radial-gradient(circle, rgba(216, 226, 255, .9) 0%, transparent 70%);
	animation-delay: -4s;
	animation-duration: 18s;
}

.home-animate {
	opacity: 0;
	transform: translateY(1.25rem);
}
.home-animate.is-visible {
	animation: homeFadeUp .65s cubic-bezier(.22, 1, .36, 1) forwards;
	animation-delay: var(--stagger, 0s);
}
.home-animate[data-animate="2"].is-visible:not([style*="--stagger"]) { animation-delay: .12s; }
.home-animate[data-animate="3"].is-visible { animation-delay: var(--stagger, .2s); }

.home-welcome {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	margin-bottom: 1.5rem;
	padding: 1rem 1.25rem;
	background: rgba(255, 255, 255, .92);
	border: 1px solid #f1f5f9;
	border-radius: var(--md-radius-lg);
	box-shadow: var(--md-shadow-1);
	transition: box-shadow .35s ease, transform .35s ease;
}
@media (min-width: 640px) {
	.home-welcome { align-items: center; }
}
.home-welcome:hover {
	box-shadow: var(--md-shadow-2);
	transform: translateY(-2px);
}

.home-welcome-icon-wrap {
	position: relative;
	flex-shrink: 0;
	width: 3.5rem;
	height: 3.5rem;
}
.home-welcome-ping {
	position: absolute;
	inset: 0;
	border-radius: var(--md-radius-md);
	background: var(--md-primary);
	opacity: .2;
	animation: homePing 2.5s cubic-bezier(0, 0, .2, 1) infinite;
}
.home-welcome-icon {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: var(--md-radius-md);
	background: var(--md-primary-container);
	color: var(--md-primary);
	animation: homePulse 3s cubic-bezier(.4, 0, .6, 1) infinite;
}
.home-welcome-icon .material-symbols-outlined { font-size: 1.75rem; }

.home-welcome-text { min-width: 0; flex: 1; }
.home-welcome-label {
	margin: 0 0 .125rem;
	font-size: .75rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--md-primary);
}
.home-welcome-title {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--md-on-surface);
}
.home-welcome-sub {
	margin: .25rem 0 0;
	font-size: .875rem;
	color: var(--md-on-surface-variant);
}
@media (min-width: 640px) {
	.home-welcome-title { font-size: 1.375rem; }
}

.home-booking-card {
	transition: box-shadow .35s ease, transform .35s ease;
}
.home-booking-card:hover {
	box-shadow: var(--md-shadow-2);
}
.home-booking-card .m3-select:focus,
.home-booking-card .m3-input:focus {
	animation: none;
}

.home-submit-btn {
	position: relative;
	overflow: hidden;
	transition: transform .2s ease, box-shadow .25s ease;
}
.home-submit-btn::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, .22) 50%, transparent 60%);
	background-size: 200% 100%;
	opacity: 0;
	transition: opacity .2s ease;
}
.home-submit-btn:hover:not(:disabled)::after {
	opacity: 1;
	animation: homeShimmer 1.4s ease infinite;
}
.home-submit-btn:hover:not(:disabled) {
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(0, 90, 193, .28);
}
.home-submit-btn:active:not(:disabled) { transform: scale(.98); }
.home-submit-btn.is-loading .material-symbols-outlined {
	animation: homeSpin 1s linear infinite;
}
.home-submit-btn.is-loading .home-submit-label { opacity: .85; }

.profile-photo-wrap {
	position: relative;
	flex-shrink: 0;
	width: 6rem;
	height: 6rem;
	margin: 0 auto;
}
.profile-page .profile-photo-wrap {
	margin: 0;
}
@media (min-width: 640px) {
	.profile-photo-wrap { width: 8rem; height: 8rem; }
}
@media (min-width: 1024px) {
	.profile-page .profile-photo-wrap { width: 10rem; height: 10rem; }
}
.profile-photo-wrap .profile-photo {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
	margin: 0;
}
.profile-page .profile-hero,
.profile-page .profile-content {
	transition: box-shadow .35s ease;
}
.profile-page .profile-hero:hover,
.profile-page .profile-content:hover {
	box-shadow: var(--md-shadow-2);
}

@media (prefers-reduced-motion: reduce) {
	.home-orb,
	.home-welcome-icon,
	.psy-badge-dot,
	.home-animate {
		animation: none !important;
	}
	.home-animate {
		opacity: 1;
		transform: none;
	}
	.home-welcome:hover,
	.psy-card:hover,
	.home-submit-btn:hover:not(:disabled) {
		transform: none;
	}
	.home-submit-btn::after { display: none; }
}

/* Login */
.login-page {
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	min-height: calc(100vh - 7.5rem);
	padding-top: 1.5rem;
	padding-bottom: 2rem;
}
.login-shell {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 28rem;
	margin: 0 auto;
}
.login-page .home-welcome {
	margin-bottom: 1.25rem;
}
.login-page .home-welcome:hover {
	transform: translateY(-1px);
}
.login-card {
	transition: box-shadow .35s ease;
}
.login-card:hover {
	box-shadow: var(--md-shadow-2);
}
.login-back {
	margin-top: 1.25rem;
	margin-bottom: 0;
	opacity: 0;
	transform: translateY(.75rem);
}
.login-back.is-visible {
	animation: homeFadeUp .55s cubic-bezier(.22, 1, .36, 1) forwards;
}
@media (prefers-reduced-motion: reduce) {
	.login-page .home-welcome:hover { transform: none; }
	.login-back {
		opacity: 1;
		transform: none;
	}
}

.page-header { margin-bottom: 1rem; }
.page-header-center { text-align: center; }

.booking-card-head {
	display: flex;
	align-items: center;
	gap: .625rem;
	margin-bottom: 1.25rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid #f1f5f9;
}
.booking-card-head .material-symbols-outlined {
	font-size: 1.375rem;
	color: var(--md-primary);
}
.booking-card-head h2 {
	margin: 0;
	font-size: 1.0625rem;
	font-weight: 500;
}

/* Form grid */
.form-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 640px) {
	.form-grid { grid-template-columns: 1fr 1fr; }
}
.form-grid-full { grid-column: 1 / -1; }

/* Psychologist cards grid */
.psy-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 640px) {
	.psy-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
	.psy-grid { grid-template-columns: repeat(3, 1fr); }
}
.motion-page .home-welcome { margin-bottom: 1.5rem; }

.psy-card {
	display: flex;
	flex-direction: column;
	transition: box-shadow .35s ease, transform .35s ease;
}
.psy-card:hover {
	box-shadow: var(--md-shadow-2);
	transform: translateY(-3px);
}
.psy-card-field {
	margin: 0 0 .25rem;
	font-size: .6875rem;
	font-weight: 500;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--md-primary);
}
.psy-card-name {
	margin: 0;
	font-size: 1rem;
	font-weight: 500;
}
.psy-card-name a {
	color: inherit;
	text-decoration: none;
}
.psy-card-name a:hover { color: var(--md-primary); }
.psy-card-price-label {
	margin: 0;
	font-size: .75rem;
	color: var(--md-on-surface-variant);
}
.psy-card-price {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	color: var(--md-primary);
}
.psy-badge-dot {
	width: .375rem;
	height: .375rem;
	border-radius: 50%;
	background: #10b981;
	animation: schedulePulse 1.5s ease infinite;
}
.psy-card-img {
	position: relative;
	aspect-ratio: 4/3;
	overflow: hidden;
	background: var(--md-surface-dim);
}
.psy-card-img img { width: 100%; height: 100%; object-fit: cover; }
.psy-badge {
	position: absolute;
	top: .75rem;
	right: .75rem;
	display: inline-flex;
	align-items: center;
	gap: .25rem;
	padding: .25rem .625rem;
	font-size: .6875rem;
	font-weight: 500;
	color: #047857;
	background: rgba(255,255,255,.95);
	border-radius: 9999px;
	box-shadow: 0 1px 3px rgba(0,0,0,.05);
}
.psy-card-body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 1rem;
}
.psy-card-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 1rem;
	border-top: 1px solid #f1f5f9;
}
.psy-card-topic {
	display: flex;
	align-items: flex-start;
	gap: .375rem;
	margin: .5rem 0 0;
	font-size: .8125rem;
	color: var(--md-on-surface-variant);
	line-height: 1.4;
}
.psy-card-services {
	list-style: none;
	margin: .75rem 0 0;
	padding: 0;
	font-size: .75rem;
	color: var(--md-on-surface-variant);
}
.psy-card-services li {
	display: flex;
	align-items: center;
	gap: .375rem;
	margin-bottom: .25rem;
}
.psy-card-services li:last-child { margin-bottom: 0; }
.psy-card.is-filtered-out {
	display: none;
}

/* Konsultasi / dashboard results */
.konsultasi-page .motion-page-inner {
	max-width: 72rem;
}
.konsultasi-context {
	margin-bottom: 1rem;
	transition: box-shadow .35s ease;
}
.konsultasi-context:hover {
	box-shadow: var(--md-shadow-2);
}
.konsultasi-context-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.25rem !important;
}
.konsultasi-context-chips {
	display: flex;
	flex-wrap: wrap;
	gap: .5rem;
	flex: 1;
	min-width: 0;
}
.konsultasi-chip {
	display: inline-flex;
	align-items: center;
	gap: .25rem;
}
.konsultasi-chip-accent {
	background: var(--md-primary-container);
	color: var(--md-on-primary-container);
	border-color: transparent;
}
.konsultasi-change-btn {
	flex-shrink: 0;
	text-decoration: none;
}
.konsultasi-toolbar {
	display: flex;
	flex-direction: column;
	gap: .75rem;
	margin-bottom: 1rem;
}
@media (min-width: 640px) {
	.konsultasi-toolbar {
		flex-direction: row;
		align-items: flex-end;
	}
}
.konsultasi-search {
	position: relative;
	flex: 1;
	min-width: 0;
}
.konsultasi-search .material-symbols-outlined {
	position: absolute;
	left: .875rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--md-on-surface-variant);
	pointer-events: none;
}
.konsultasi-search .m3-input {
	width: 100%;
	padding-left: 2.75rem;
	margin: 0;
}
.konsultasi-sort-wrap {
	flex-shrink: 0;
	width: 100%;
}
@media (min-width: 640px) {
	.konsultasi-sort-wrap { width: 11rem; }
}
.konsultasi-sort-label {
	margin-bottom: .25rem;
	font-size: .75rem;
}
.konsultasi-sort { margin: 0; }
.konsultasi-empty,
.konsultasi-no-match {
	margin-top: 1rem;
}
.konsultasi-empty.is-hidden,
.konsultasi-no-match.is-hidden {
	display: none !important;
}
.konsultasi-empty-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	gap: .75rem;
	padding: 2rem 1.5rem !important;
}
.konsultasi-empty-icon {
	font-size: 3rem !important;
	color: var(--md-primary);
	opacity: .85;
}

/* Checkout / booking layout */
.layout-2col {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}
@media (min-width: 1024px) {
	.layout-2col { grid-template-columns: 2fr 1fr; }
}
.layout-main { display: flex; flex-direction: column; gap: 1rem; }
.layout-sidebar .m3-card { position: sticky; top: 5rem; }
.summary-list { list-style: none; margin: 1rem 0 0; padding: 0; }
.summary-list li {
	display: flex;
	justify-content: space-between;
	padding: .5rem .75rem;
	margin-bottom: .5rem;
	font-size: .875rem;
	border-radius: var(--md-radius-md);
	background: var(--md-surface-dim);
}
.summary-list li.highlight {
	background: rgba(216,226,255,.5);
}
.summary-list li .price { font-weight: 700; color: var(--md-primary); }
.doc-summary {
	display: flex;
	align-items: center;
	gap: .75rem;
}
.doc-summary img {
	width: 4rem;
	height: 4rem;
	border-radius: var(--md-radius-lg);
	object-fit: cover;
}

/* Checkout */
.checkout-page-head {
	margin-bottom: 1.25rem;
}
.checkout-page-head h1 {
	margin: 0;
	font-size: 1.375rem;
	font-weight: 600;
	color: var(--md-on-surface);
}
@media (min-width: 640px) {
	.checkout-page-head h1 { font-size: 1.5rem; }
}
.checkout-page-head p {
	margin: .375rem 0 0;
	font-size: .875rem;
	color: var(--md-on-surface-variant);
	line-height: 1.5;
}
.checkout-login-hint {
	margin: 0 0 1.25rem;
	padding: .75rem 1rem;
	font-size: .875rem;
	color: var(--md-on-surface-variant);
	background: var(--md-surface-dim);
	border-radius: var(--md-radius-md);
}
.checkout-login-hint a {
	color: var(--md-primary);
	font-weight: 600;
	text-decoration: none;
}
.checkout-login-hint a:hover { text-decoration: underline; }
.checkout-kode {
	margin-bottom: 1.25rem;
	padding: 1rem 1.25rem;
	background: rgba(216,226,255,.35);
	border: 1px solid rgba(0,90,193,.12);
	border-radius: var(--md-radius-lg);
}
.checkout-kode .m3-label {
	margin-bottom: .5rem;
	color: var(--md-on-primary-container);
}
.checkout-kode-hint {
	margin: .5rem 0 0;
	font-size: .8125rem;
	color: var(--md-on-surface-variant);
	line-height: 1.45;
}
.checkout-section {
	margin-top: 1.75rem;
	padding-top: 1.75rem;
	border-top: 1px solid #e8ecf2;
}
.checkout-section:first-of-type {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}
.checkout-section-head {
	display: flex;
	align-items: center;
	gap: .625rem;
	margin-bottom: 1.25rem;
}
.checkout-section-head .material-symbols-outlined {
	font-size: 1.375rem;
	color: var(--md-primary);
	flex-shrink: 0;
}
.checkout-section-head h2 {
	margin: 0;
	font-size: 1.0625rem;
	font-weight: 600;
	color: var(--md-on-surface);
}
@media (min-width: 640px) {
	.checkout-section-head h2 { font-size: 1.125rem; }
}
.md-text-field {
	display: flex;
	flex-direction: column;
	min-width: 0;
}
.md-text-field .m3-label { margin-bottom: .375rem; }
.m3-label-hint {
	display: block;
	font-weight: 400;
	font-size: .8125rem;
	color: var(--md-on-surface-variant);
	line-height: 1.4;
	margin: .125rem 0 .375rem;
}
.checkout-questions .md-text-field + .md-text-field {
	margin-top: 1rem;
}
.checkout-footer {
	margin-top: 2rem;
	padding-top: 1.5rem;
	border-top: 1px solid #e8ecf2;
}
.checkout-footer .m3-btn-primary {
	min-height: 3rem;
	font-size: .9375rem;
}
.checkout-summary-card .doc-summary img {
	width: 4.5rem;
	height: 4.5rem;
	border: 3px solid var(--md-primary-container);
}
.checkout-doc-name {
	margin: 0;
	font-size: 1rem;
	font-weight: 600;
	color: var(--md-on-surface);
}
.checkout-doc-bidang {
	margin: .125rem 0 0;
	font-size: .8125rem;
	color: var(--md-on-surface-variant);
}
.checkout-summary-card .summary-list {
	margin-top: 1.25rem;
}
.checkout-summary-card .summary-list li {
	padding: .625rem .875rem;
}
.form-control[readonly] {
	background: var(--md-surface-dim);
	color: var(--md-on-surface-variant);
	cursor: not-allowed;
}

/* Tabs */
.tab-nav {
	display: flex;
	gap: .25rem;
	overflow-x: auto;
	padding: .5rem;
	border-bottom: 1px solid #f1f5f9;
}
.nav-link {
	padding: .625rem 1rem;
	font-size: .875rem;
	font-weight: 500;
	color: var(--md-on-surface-variant);
	background: transparent;
	border: none;
	border-radius: var(--md-radius-md);
	cursor: pointer;
	white-space: nowrap;
}
.nav-link.active {
	background: var(--md-primary-container);
	color: var(--md-on-primary-container);
}
.tab-pane { display: none; }
.tab-pane.active { display: block; }

/* Profile page — responsive */
.profile-page .profile-hero .m3-card-body,
.profile-page .profile-content .m3-card-body {
	padding: 1rem;
}
@media (min-width: 640px) {
	.profile-page .profile-hero .m3-card-body,
	.profile-page .profile-content .m3-card-body {
		padding: 1.5rem;
	}
}
@media (min-width: 1024px) {
	.profile-page .profile-head { gap: 2rem; align-items: flex-start; }
	.profile-page .profile-photo { width: 10rem; height: 10rem; }
	.profile-page .profile-actions .m3-btn-primary { width: auto; min-width: 14rem; }
}

.profile-info-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
}
@media (min-width: 1024px) {
	.profile-info-grid { grid-template-columns: 1.4fr 1fr; gap: 2rem; }
}
.profile-desc {
	margin: 0;
	line-height: 1.65;
}
.profile-license-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: .5rem;
}
.profile-license-item {
	display: flex;
	align-items: center;
	gap: .625rem;
	padding: .875rem 1rem;
	background: var(--md-surface-dim);
	border-radius: var(--md-radius-md);
	font-size: .875rem;
}

.profile-page .tab-nav {
	padding: .5rem .75rem;
}
@media (min-width: 1024px) {
	.profile-page .tab-nav {
		padding: .75rem 1.5rem;
		gap: .5rem;
	}
	.profile-page .tab-nav .nav-link {
		padding: .75rem 1.25rem;
		font-size: .9375rem;
	}
}

/* Profile schedule — mobile first, desktop split */
.schedule-head {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: space-between;
	gap: .75rem;
	margin-bottom: 1rem;
}
@media (min-width: 1024px) {
	.schedule-head { margin-bottom: 1.25rem; }
}
.schedule-sub {
	margin: .25rem 0 0;
	font-size: .875rem;
	color: var(--md-on-surface-variant);
}
.schedule-badge {
	display: inline-flex;
	align-items: center;
	gap: .375rem;
	padding: .375rem .75rem;
	font-size: .8125rem;
	font-weight: 500;
	color: var(--md-on-primary-container);
	background: var(--md-primary-container);
	border-radius: 9999px;
}
.schedule-badge .material-symbols-outlined { font-size: 1.125rem; }

.schedule-layout {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
@media (min-width: 1024px) {
	.schedule-layout {
		display: grid;
		grid-template-columns: minmax(15rem, 18rem) minmax(0, 1fr);
		gap: 1.25rem;
		align-items: start;
	}
}

.schedule-sidebar-label {
	display: none;
	margin: 0 0 .75rem;
	font-size: .75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .06em;
	color: var(--md-on-surface-variant);
}
@media (min-width: 1024px) {
	.schedule-sidebar-label { display: block; }
	.schedule-sidebar {
		position: sticky;
		top: 5.5rem;
	}
}

.schedule-week {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: .5rem;
}
@media (min-width: 480px) {
	.schedule-week { grid-template-columns: repeat(7, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
	.schedule-week {
		display: flex;
		flex-direction: column;
		gap: .5rem;
	}
}

.schedule-day {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .125rem;
	min-height: 5.25rem;
	padding: .625rem .375rem;
	font-family: inherit;
	text-align: center;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: var(--md-radius-lg);
	cursor: pointer;
	transition: border-color .2s, background .2s, box-shadow .2s, transform .15s;
}
@media (min-width: 1024px) {
	.schedule-day {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		min-height: auto;
		padding: .875rem 1rem;
		text-align: left;
	}
}
.schedule-day.has-slots:hover {
	border-color: var(--md-primary);
	box-shadow: var(--md-shadow-1);
}
@media (max-width: 1023px) {
	.schedule-day.has-slots:hover { transform: translateY(-1px); }
}
.schedule-day.is-selected {
	border-color: var(--md-primary);
	background: var(--md-primary-container);
	box-shadow: var(--md-shadow-1);
}
.schedule-day.is-off {
	background: #f8fafc;
	color: #94a3b8;
	cursor: not-allowed;
	opacity: .75;
}
.schedule-day.is-today:not(.is-selected) {
	border-color: #93c5fd;
}

.schedule-day-main {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .125rem;
}
@media (min-width: 1024px) {
	.schedule-day-main {
		align-items: flex-start;
		flex: 1;
		min-width: 0;
	}
}

.schedule-day-short {
	font-size: .8125rem;
	font-weight: 700;
	color: var(--md-on-surface);
}
.schedule-day-full {
	display: none;
	font-size: .875rem;
	font-weight: 600;
	color: var(--md-on-surface);
}
@media (min-width: 640px) and (max-width: 1023px) {
	.schedule-day-short { display: none; }
	.schedule-day-full { display: block; font-size: .75rem; font-weight: 500; }
}
@media (min-width: 1024px) {
	.schedule-day-short { display: none; }
	.schedule-day-full { display: block; }
}

.schedule-day-meta {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: .125rem;
}
@media (min-width: 1024px) {
	.schedule-day-meta {
		align-items: flex-end;
		text-align: right;
		flex-shrink: 0;
		margin-left: .75rem;
	}
}

.schedule-day-count {
	font-size: .6875rem;
	color: var(--md-on-surface-variant);
}
.schedule-day.is-selected .schedule-day-count {
	color: var(--md-on-primary-container);
}
.schedule-day-range {
	display: none;
	font-size: .75rem;
	font-weight: 500;
	color: var(--md-primary);
}
@media (min-width: 1024px) {
	.schedule-day-range { display: block; }
	.schedule-day.is-selected .schedule-day-range { color: var(--md-on-primary-container); }
}

.schedule-today-tag {
	display: none;
	margin-top: .125rem;
	padding: .125rem .375rem;
	font-size: .625rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: var(--md-primary);
	background: rgba(255,255,255,.7);
	border-radius: 9999px;
}
.schedule-day.is-today .schedule-today-tag { display: inline-block; }

.schedule-main {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	min-width: 0;
}
@media (min-width: 1024px) {
	.schedule-main { gap: 1.25rem; }
}

.schedule-detail {
	position: relative;
	min-height: 8rem;
}
@media (min-width: 1024px) {
	.schedule-detail { min-height: 14rem; }
}

.schedule-day-panel {
	display: none;
	padding: 1rem;
	background: var(--md-surface-dim);
	border: 1px solid #e2e8f0;
	border-radius: var(--md-radius-lg);
	animation: scheduleFadeIn .25s ease;
}
@media (min-width: 1024px) {
	.schedule-day-panel {
		padding: 1.25rem 1.5rem;
		min-height: 100%;
	}
}
.schedule-day-panel.is-visible { display: block; }
@keyframes scheduleFadeIn {
	from { opacity: 0; transform: translateY(4px); }
	to { opacity: 1; transform: translateY(0); }
}

.schedule-panel-head {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	margin-bottom: 1rem;
}
.schedule-panel-title {
	display: flex;
	align-items: center;
	gap: .625rem;
}
.schedule-panel-title h4 {
	margin: 0;
	font-size: 1rem;
	font-weight: 500;
}
@media (min-width: 1024px) {
	.schedule-panel-title h4 { font-size: 1.125rem; }
}
.schedule-panel-title p {
	margin: .125rem 0 0;
	font-size: .8125rem;
	color: var(--md-on-surface-variant);
}
.schedule-live-badge {
	display: inline-flex;
	align-items: center;
	gap: .375rem;
	padding: .25rem .625rem;
	font-size: .75rem;
	font-weight: 500;
	color: #047857;
	background: #ecfdf5;
	border-radius: 9999px;
}
.schedule-live-dot {
	width: .5rem;
	height: .5rem;
	border-radius: 50%;
	background: #10b981;
	animation: schedulePulse 1.5s ease infinite;
}
@keyframes schedulePulse {
	0%, 100% { opacity: 1; }
	50% { opacity: .4; }
}

.schedule-slots {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}
@media (min-width: 768px) {
	.schedule-slots {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: .625rem;
	}
}
@media (min-width: 1280px) {
	.schedule-slots { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.schedule-slot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
	padding: .75rem 1rem;
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: var(--md-radius-md);
	transition: border-color .2s, box-shadow .2s, transform .15s;
}
@media (min-width: 1024px) {
	.schedule-slot {
		flex-direction: column;
		align-items: flex-start;
		padding: 1rem;
	}
}
.schedule-slot:hover {
	border-color: var(--md-primary);
	box-shadow: var(--md-shadow-1);
}
@media (min-width: 1024px) {
	.schedule-slot:hover { transform: translateY(-1px); }
}
.schedule-slot-time {
	display: inline-flex;
	align-items: center;
	gap: .375rem;
	font-size: .9375rem;
	font-weight: 500;
}
.schedule-slot-time .material-symbols-outlined {
	font-size: 1.125rem;
	color: var(--md-primary);
}
.schedule-slot-status {
	flex-shrink: 0;
	padding: .25rem .625rem;
	font-size: .6875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .04em;
	color: #047857;
	background: #ecfdf5;
	border-radius: 9999px;
}

.schedule-foot {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding-top: 1rem;
	border-top: 1px solid #f1f5f9;
}
@media (min-width: 640px) {
	.schedule-foot {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}
@media (min-width: 1024px) {
	.schedule-foot {
		padding: 1rem 1.25rem;
		background: #fff;
		border: 1px solid #e2e8f0;
		border-radius: var(--md-radius-lg);
		border-top: 1px solid #e2e8f0;
	}
}
.schedule-foot-note {
	display: flex;
	align-items: flex-start;
	gap: .375rem;
	margin: 0;
	font-size: .8125rem;
	color: var(--md-on-surface-variant);
	line-height: 1.4;
}
@media (min-width: 1024px) {
	.schedule-foot-note { max-width: 36rem; }
}
.schedule-foot-note .material-symbols-outlined {
	flex-shrink: 0;
	font-size: 1.125rem;
	color: var(--md-primary);
}
.schedule-foot .m3-btn-primary { flex-shrink: 0; }

.schedule-empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: .75rem;
	padding: 2.5rem 1rem;
	text-align: center;
	background: var(--md-surface-dim);
	border: 1px dashed #cbd5e1;
	border-radius: var(--md-radius-lg);
}
.schedule-empty .material-symbols-outlined {
	font-size: 2.5rem;
	color: #94a3b8;
}
.schedule-empty p {
	margin: 0;
	font-size: .875rem;
	color: var(--md-on-surface-variant);
}

/* Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--md-primary) !important; }
.text-muted, .text-onSurfaceVariant { color: var(--md-on-surface-variant); }
.fw-bold { font-weight: 700; }
.hidden { display: none !important; }
.d-none { display: none !important; }
.flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: .5rem; }
.gap-3 { gap: .75rem; }
.gap-4 { gap: 1rem; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.text-end { text-align: right; }
.w-full { width: 100%; }
.space-y-4 > * + * { margin-top: 1rem; }
.max-w-3xl { max-width: 48rem; margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 28rem; margin-left: auto; margin-right: auto; }

/* Tables */
.table { width: 100%; font-size: .875rem; border-collapse: collapse; }
.table-bordered { border: 1px solid #e2e8f0; }
.table-bordered th, .table-bordered td { border: 1px solid #e2e8f0; padding: .5rem .75rem; }
.table-borderless td { border: 0; padding: .375rem 0; }
.table-responsive { overflow-x: auto; }
.bg-light { background: var(--md-surface-dim); }
.rounded { border-radius: var(--md-radius-md); }
.p-3 { padding: .75rem; }
.p-4 { padding: 1rem; }

.login-form .form-actions { margin-top: .25rem; }
.login-form .form-actions .m3-btn-block { width: 100%; }

.login-field-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: .75rem;
}
.login-link {
	display: inline-flex;
	align-items: center;
	gap: .25rem;
	font-size: .875rem;
	font-weight: 500;
	color: var(--md-primary);
	text-decoration: none;
}
.login-link:hover { text-decoration: underline; }

.login-divider {
	display: flex;
	align-items: center;
	gap: .75rem;
	margin: 1.5rem 0 1rem;
	color: var(--md-on-surface-variant);
	font-size: .8125rem;
}
.login-divider::before,
.login-divider::after {
	content: "";
	flex: 1;
	height: 1px;
	background: #e2e8f0;
}

.login-google-wrap { margin-top: .5rem; }
.login-google-btn {
	max-width: 100%;
	color: #3c4043 !important;
	background: #fff !important;
	border-color: #dadce0 !important;
}
.login-google-btn:hover {
	background: #f8f9fa !important;
}
.login-google-btn--disabled {
	opacity: .65;
	pointer-events: none;
	cursor: not-allowed;
}
.login-google-icon {
	width: 1.25rem;
	height: 1.25rem;
	flex-shrink: 0;
}
.login-google-label {
	margin: 0 0 .25rem;
	font-size: .75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05em;
	color: var(--md-primary);
}
.login-google-email {
	margin: 0;
	font-weight: 500;
	color: var(--md-on-surface);
	word-break: break-all;
}
.login-google-hint {
	margin: .5rem 0 0;
	font-size: .8125rem;
	color: var(--md-on-surface-variant);
	line-height: 1.4;
}

@keyframes m3-spin {
	to { transform: rotate(360deg); }
}
.login-spin {
	animation: m3-spin 1s linear infinite;
}

.drawer-login-btn { margin-top: 1rem; }

.input-row {
	display: flex;
	flex-direction: column;
	gap: .5rem;
}

.drawer-link .material-symbols-outlined {
	color: var(--md-primary);
	font-size: 1.25rem;
}
.app-phone .material-symbols-outlined {
	font-size: 1.25rem;
	color: var(--md-primary);
}

.m3-icon-sm { font-size: 1.125rem !important; }
.m3-icon-md { font-size: 1.25rem !important; }
.m3-icon-lg { font-size: 2.5rem !important; }

.alert-with-icon {
	display: flex;
	align-items: flex-start;
	gap: .5rem;
}
.alert-with-icon .material-symbols-outlined {
	flex-shrink: 0;
	font-size: 1.25rem;
}
@media (min-width: 640px) {
	.input-row { flex-direction: row; align-items: stretch; }
	.input-row .form-control { flex: 1; }
}
.input-row .m3-btn-tonal,
.input-row .m3-btn-outlined {
	flex-shrink: 0;
}
.profile-head {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
}
.profile-actions { display: flex; }
.profile-actions .m3-btn-primary { width: 100%; }
@media (min-width: 640px) {
	.profile-head { flex-direction: row; align-items: flex-start; text-align: left; }
	.profile-actions .m3-btn-primary { width: auto; min-width: 12rem; }
}
.profile-photo {
	width: 7rem;
	height: 7rem;
	border-radius: var(--md-radius-xl);
	object-fit: cover;
	border: 4px solid var(--md-primary-container);
}
@media (min-width: 640px) {
	.profile-photo { width: 8rem; height: 8rem; }
}
.invoice-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1rem;
}
@media (min-width: 640px) {
	.invoice-grid { grid-template-columns: 1fr 1fr; }
}
.btn-row {
	display: flex;
	flex-direction: column;
	gap: .75rem;
}
@media (min-width: 640px) {
	.btn-row { flex-direction: row; justify-content: center; }
}

@media print {
	.no-print, .no-print * { display: none !important; }
}
