* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	-webkit-tap-highlight-color: transparent;
}
:root {
	--ink: #f8fbff;
	--muted: #a8b7cc;
	--glass: rgba(11, 22, 38, 0.62);
	--glass-strong: rgba(12, 25, 44, 0.78);
	--line: rgba(136, 204, 255, 0.22);
	--line-strong: rgba(66, 200, 255, 0.22);
	--blue: #42c8ff;
	--blue2: #1e6fff;
	--green: #42e8b4;
	--shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
	--font-sans: "Geist", "Plus Jakarta Sans", system-ui, sans-serif;
	--font-display: "Plus Jakarta Sans", "Geist", system-ui, sans-serif;
	--font-mono: "Geist Mono", ui-monospace, monospace;
}
body {
	font-family: "Plus Jakarta Sans", sans-serif;
	background: #020711;
	min-height: 100vh;
	display: flex;
	justify-content: center;
	color: var(--ink);
	overflow-x: hidden;
}
body::before {
	content: "";
	position: fixed;
	inset: 0;
	background:
		radial-gradient(
			circle at 50% -10%,
			rgba(53, 172, 255, 0.35),
			transparent 34%
		),
		radial-gradient(circle at 14% 22%, rgba(0, 88, 180, 0.25), transparent 30%),
		linear-gradient(145deg, #020711 0%, #061524 48%, #020711 100%);
	pointer-events: none;
}
.app {
	width: 100%;
	max-width: 440px;
	height: 100vh;
	height: 100dvh;
	background: linear-gradient(
		180deg,
		rgba(3, 9, 19, 0.96),
		rgba(7, 16, 30, 0.98)
	);
	display: flex;
	flex-direction: column;
	position: relative;
	overflow: hidden;
	box-shadow: 0 0 90px rgba(17, 128, 255, 0.2);
	animation: appFadeIn 0.25s ease both;
}
@keyframes appFadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.app::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle, rgba(100, 210, 255, 0.32) 0 1px, transparent 1.4px),
		radial-gradient(circle, rgba(255, 255, 255, 0.16) 0 1px, transparent 1.3px);
	background-size:
		72px 72px,
		118px 118px;
	background-position:
		0 0,
		28px 36px;
	opacity: 0.34;
	animation: particleDrift 18s linear infinite;
	pointer-events: none;
}
.app::after {
	content: "";
	position: absolute;
	inset: -20%;
	background: conic-gradient(
		from 200deg at 50% 30%,
		transparent,
		rgba(46, 166, 255, 0.16),
		transparent 28%,
		rgba(58, 232, 180, 0.08),
		transparent 54%
	);
	filter: blur(28px);
	animation: aurora 12s ease-in-out infinite alternate;
	pointer-events: none;
}
.nav {
	background: rgba(3, 12, 24, 0.88);
	backdrop-filter: blur(24px) saturate(180%);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	border-bottom: 1px solid rgba(66, 200, 255, 0.18);
	padding: 14px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: sticky;
	top: 0;
	z-index: 100;
	flex-shrink: 0;
	box-shadow: 0 1px 0 rgba(66, 200, 255, 0.07) inset, var(--shadow-sm);
}
.nav-logo {
	display: flex;
	align-items: center;
	gap: 10px;
}
.nav-logo-icon,
.home-logo-big {
	position: relative;
	background: linear-gradient(
		145deg,
		rgba(70, 201, 255, 0.95),
		rgba(13, 67, 152, 0.9)
	);
	border: 1px solid rgba(213, 245, 255, 0.5);
	box-shadow:
		0 0 0 1px rgba(66, 200, 255, 0.26),
		0 0 28px rgba(66, 200, 255, 0.46),
		inset 0 1px 12px rgba(255, 255, 255, 0.25);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	overflow: hidden;
}
.nav-logo-icon {
	width: 34px;
	height: 34px;
	border-radius: 10px;
	font-size: 0;
}
.nav-logo-icon::before,
.home-logo-big::before {
	content: "";
	position: absolute;
	inset: 0;
	background: center / 78% no-repeat url(/assets/logos/logo-white.png);
	filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.45));
}
.nav-logo-icon::after,
.home-logo-big::after {
	content: none;
}
.nav-title {
	color: #fff;
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0;
}
.nav-title span {
	color: var(--blue);
	text-shadow: 0 0 18px rgba(66, 200, 255, 0.7);
}
.nav-sub {
	color: #8cb9d8;
	font-size: 10px;
	font-weight: 600;
	margin-top: 1px;
}
.nav-btn {
	background: rgba(255, 255, 255, 0.08);
	color: #eaf8ff;
	font-size: 12px;
	font-weight: 700;
	padding: 7px 12px;
	border-radius: var(--r-pill);
	border: 1px solid rgba(148, 213, 255, 0.2);
	cursor: pointer;
	font-family: inherit;
	backdrop-filter: blur(12px);
	transition:
		all 0.2s var(--ease-out),
		transform 0.1s var(--ease-out);
}
.nav-btn:hover {
	border-color: rgba(66, 200, 255, 0.55);
	box-shadow: 0 0 18px rgba(66, 200, 255, 0.18);
}
.nav-btn:active {
	transform: scale(0.96);
}
.screen {
	flex: 1;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-y;
	padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
	position: relative;
	z-index: 2;
}
.home-hero {
	position: relative;
	z-index: 2;
	padding: 68px 24px 26px;
	text-align: center;
	color: #fff;
	min-height: 325px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.home-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(11, 30, 52, 0), rgba(2, 7, 17, 0.62)),
		radial-gradient(
			circle at 50% 40%,
			rgba(66, 200, 255, 0.26),
			transparent 34%
		);
	z-index: -1;
}
.home-logo-big {
	width: 92px;
	height: 92px;
	border-radius: 26px;
	margin: 0 auto 22px;
	font-size: 0;
	animation: logoIntro 0.95s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}
.home-logo-big::after {
	animation: logoRing 2.8s ease-in-out infinite 0.6s;
}
.home-logo-big::before {
	font-size: 52px;
}
.home-title {
	font-size: 34px;
	font-weight: 800;
	margin-bottom: 8px;
	line-height: 1.02;
	letter-spacing: 0;
	animation: riseIn 0.72s ease both 0.12s;
}
.home-title span {
	color: var(--blue);
	text-shadow: 0 0 24px rgba(66, 200, 255, 0.78);
}
.home-sub {
	font-size: 13px;
	color: #a8d9ff;
	line-height: 1.7;
	animation: riseIn 0.72s ease both 0.24s;
}
.home-cards {
	position: relative;
	z-index: 2;
	padding: 8px 18px 0;
	animation: riseIn 0.78s ease both 0.32s;
}
.home-section-label {
	font-size: 10px;
	font-weight: 800;
	color: #82a4c2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin-bottom: 12px;
}
.role-card {
	position: relative;
	background: linear-gradient(
		145deg,
		rgba(16, 33, 56, 0.9),
		rgba(7, 18, 34, 0.94)
	);
	border: 1px solid rgba(136, 204, 255, 0.20);
	border-radius: var(--r-xl);
	padding: 17px;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 12px;
	transition:
		transform 0.26s var(--ease-out),
		border-color 0.26s var(--ease-out),
		box-shadow 0.26s var(--ease-out);
	box-shadow:
		0 1px 0 rgba(136, 204, 255, 0.12) inset,
		0 -1px 0 rgba(0, 0, 0, 0.3) inset,
		var(--shadow-md);
	-webkit-backdrop-filter: blur(24px) saturate(180%);
	backdrop-filter: blur(24px) saturate(180%);
	overflow: hidden;
}
.role-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(66, 200, 255, 0.45), transparent);
	pointer-events: none;
}
.role-card:hover {
	transform: translateY(-4px) scale(1.01);
	border-color: rgba(66, 200, 255, 0.68);
	box-shadow:
		0 1px 0 rgba(136, 204, 255, 0.16) inset,
		0 -1px 0 rgba(0, 0, 0, 0.3) inset,
		0 22px 58px rgba(0, 0, 0, 0.34),
		0 0 34px rgba(66, 200, 255, 0.18);
}
.role-card:active {
	transform: scale(0.97);
}
.role-icon {
	width: 52px;
	height: 52px;
	border-radius: var(--r-lg);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	flex-shrink: 0;
	border: 1px solid rgba(255, 255, 255, 0.18);
	box-shadow: inset 0 1px 10px rgba(255, 255, 255, 0.12);
}
.role-icon.doc {
	background: linear-gradient(
		145deg,
		rgba(59, 147, 255, 0.35),
		rgba(35, 67, 128, 0.25)
	);
}
.role-icon.interp {
	background: linear-gradient(
		145deg,
		rgba(66, 232, 180, 0.28),
		rgba(17, 93, 96, 0.2)
	);
}
.role-icon.admin {
	background: linear-gradient(
		145deg,
		rgba(196, 221, 255, 0.28),
		rgba(71, 92, 133, 0.2)
	);
}
.role-info h3 {
	font-size: 15px;
	font-weight: 800;
	color: #f9fcff;
	margin-bottom: 4px;
}
.role-info p {
	font-size: 12px;
	color: #9fb1c8;
	line-height: 1.45;
}
.field-group {
	margin-bottom: 14px;
}
.field-label {
	font-size: 12px;
	font-weight: 800;
	color: #b9cde0;
	display: block;
	margin-bottom: 7px;
	letter-spacing: 0.02em;
}
.field-input {
	width: 100%;
	padding: 14px 15px;
	border: 1px solid rgba(255, 255, 255, 0.09);
	border-radius: var(--r-md);
	font-size: 16px;
	font-family: inherit;
	outline: none;
	color: #f8fbff;
	transition: all 0.2s var(--ease-out);
	background: rgba(255, 255, 255, 0.04);
	box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.22);
}
.field-input::placeholder {
	color: #5f7891;
}
.field-input:focus {
	border-color: rgba(66, 200, 255, 0.72);
	box-shadow:
		0 0 0 3px rgba(66, 200, 255, 0.12),
		inset 0 2px 8px rgba(0, 0, 0, 0.22);
}
.dept-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
}
.dept-btn {
	padding: 12px 8px;
	border: 1px solid rgba(132, 200, 255, 0.16);
	border-radius: var(--r-md);
	background: rgba(255, 255, 255, 0.03);
	font-family: inherit;
	font-size: 12px;
	font-weight: 700;
	color: #adc3d8;
	cursor: pointer;
	text-align: center;
	line-height: 1.3;
	transition: all 0.15s var(--ease-out);
}
.dept-btn:hover {
	border-color: rgba(66, 200, 255, 0.42);
	color: #fff;
}
.dept-btn:active {
	transform: scale(0.97);
}
.dept-btn.sel {
	border-color: rgba(66, 200, 255, 0.9);
	background: linear-gradient(
		135deg,
		rgba(32, 122, 255, 0.88),
		rgba(66, 200, 255, 0.52)
	);
	color: #fff;
	box-shadow: 0 0 24px rgba(66, 200, 255, 0.2);
}
.floor-label {
	font-size: 10px;
	font-weight: 800;
	color: #7190ad;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 14px 0 8px;
	padding-left: 2px;
}
.btn-primary {
	width: 100%;
	background: linear-gradient(135deg, #42c8ff, #1e6fff);
	color: #fff;
	border: none;
	padding: 15px;
	border-radius: var(--r-md);
	font-size: 15px;
	font-weight: 800;
	font-family: inherit;
	cursor: pointer;
	transition:
		opacity 0.15s var(--ease-out),
		transform 0.1s var(--ease-out);
	letter-spacing: 0;
	box-shadow:
		0 0 18px rgba(66, 200, 255, 0.24),
		var(--shadow-sm);
}
.btn-primary:hover {
	opacity: 0.88;
}
.btn-primary:active {
	transform: scale(0.96);
}
.btn-primary:disabled {
	background: #334155;
	cursor: not-allowed;
	transform: none;
	opacity: 0.6;
}
.btn-secondary {
	width: 100%;
	background: rgba(255, 255, 255, 0.055);
	color: #bdd2e6;
	border: 1px solid rgba(148, 213, 255, 0.14);
	padding: 13px;
	border-radius: var(--r-md);
	font-size: 14px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	margin-top: 8px;
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	transition:
		opacity 0.15s var(--ease-out),
		transform 0.1s var(--ease-out);
}
.btn-secondary:active {
	transform: scale(0.96);
}
.card-section {
	padding: 18px 18px 0;
	position: relative;
	z-index: 2;
	animation: screenIn 0.34s ease both;
}
.doc-hero,
.interp-hero {
	position: relative;
	z-index: 2;
	background: linear-gradient(
		145deg,
		rgba(18, 73, 130, 0.92),
		rgba(5, 17, 31, 0.9)
	);
	border-bottom: 1px solid rgba(66, 200, 255, 0.18);
	padding: 24px 20px 28px;
	color: #fff;
	overflow: hidden;
	box-shadow: 0 1px 0 rgba(66, 200, 255, 0.10) inset;
}
.doc-hero::before,
.interp-hero::before {
	content: "";
	position: absolute;
	inset: -40% -20%;
	background:
		radial-gradient(
			circle at 30% 35%,
			rgba(66, 200, 255, 0.26),
			transparent 30%
		),
		radial-gradient(
			circle at 78% 22%,
			rgba(65, 232, 180, 0.16),
			transparent 26%
		);
	animation: slowFloat 8s ease-in-out infinite alternate;
	z-index: -1;
}
.interp-hero {
	background: linear-gradient(
		145deg,
		rgba(7, 95, 82, 0.92),
		rgba(5, 17, 31, 0.94)
	);
}
.hero-greeting {
	font-size: 11px;
	font-weight: 700;
	opacity: 0.65;
	margin-bottom: 3px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.hero-name {
	font-size: 20px;
	font-weight: 800;
	margin-bottom: 2px;
}
.hero-dept {
	font-size: 13px;
	opacity: 0.75;
	margin-bottom: 16px;
}
.stats-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
}
.stats-section-label {
	font-size: 11px;
	font-weight: 700;
	color: #4a6380;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-bottom: 10px;
	margin-top: 4px;
}
.stat-card {
	background: linear-gradient(
		145deg,
		rgba(255, 255, 255, 0.13),
		rgba(255, 255, 255, 0.05)
	);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: var(--r-md);
	padding: 12px 14px;
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	backdrop-filter: blur(20px) saturate(180%);
	position: relative;
	overflow: hidden;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.15) inset,
		0 -1px 0 rgba(0, 0, 0, 0.2) inset,
		var(--shadow-md);
	transition:
		transform 0.25s var(--ease-out),
		box-shadow 0.25s var(--ease-out);
}
.stat-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.13) 0%,
		transparent 55%
	);
	border-radius: inherit;
	pointer-events: none;
	z-index: 0;
}
.stat-card > * {
	position: relative;
	z-index: 1;
}
.stat-card:hover {
	transform: translateY(-5px) rotateX(2deg);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.18) inset,
		0 -1px 0 rgba(0, 0, 0, 0.2) inset,
		0 18px 48px rgba(0, 0, 0, 0.48),
		0 6px 18px rgba(0, 0, 0, 0.3);
}
.stat-num {
	font-size: 26px;
	font-weight: 800;
	line-height: 1;
	background: linear-gradient(135deg, #fff 50%, rgba(66, 200, 255, 0.9));
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 8px rgba(66, 200, 255, 0.45));
}
.stat-label {
	font-size: 10px;
	color: rgba(170, 220, 255, 0.9);
	margin-top: 4px;
	font-weight: 700;
	letter-spacing: 0.07em;
	text-transform: uppercase;
}
.req-card {
	background: linear-gradient(
		160deg,
		rgba(16, 32, 56, 0.92),
		rgba(8, 18, 34, 0.96)
	);
	border-radius: var(--r-md);
	margin-bottom: 6px;
	overflow: hidden;
	box-shadow:
		0 1px 0 rgba(132, 200, 255, 0.12) inset,
		0 -1px 0 rgba(0, 0, 0, 0.3) inset,
		var(--shadow-sm);
	border: 1px solid rgba(132, 200, 255, 0.16);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	transition:
		transform 0.2s var(--ease-out),
		box-shadow 0.2s var(--ease-out);
}
.req-card-inner {
	padding: 8px 11px;
}
.req-stripe {
	height: 3px;
}
.req-stripe.pending {
	background: #f59e0b;
}
.req-stripe.assigned {
	background: #3b82f6;
}
.req-stripe.onway {
	background: #8b5cf6;
}
.req-stripe.arrived {
	background: #10b981;
}
.req-stripe.cancelled {
	background: #e2e8f0;
}
.req-stripe.completed {
	background: #42e8b4;
}
.req-top {
	display: flex;
	align-items: center;
	gap: 5px;
	flex-wrap: wrap;
	margin-bottom: 5px;
}
.req-id {
	font-size: 10px;
	color: #84a1bc;
	font-weight: 700;
	letter-spacing: 0.03em;
}
.badge {
	font-size: 9px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 20px;
	letter-spacing: 0.03em;
}
.badge.pending {
	background: #fef3c7;
	color: #92400e;
}
.badge.assigned {
	background: #dbeafe;
	color: #1e40af;
}
.badge.onway {
	background: #ede9fe;
	color: #5b21b6;
}
.badge.arrived {
	background: #d1fae5;
	color: #065f46;
}
.badge.cancelled {
	background: #263241;
	color: #94a3b8;
}
.badge.completed {
	background: #d1fae5;
	color: #065f46;
}
.urgent-card {
	border-left: 3px solid #ef4444 !important;
}
.badge-urgent {
	background: rgba(239, 68, 68, 0.2);
	border: 1px solid rgba(239, 68, 68, 0.5);
	color: #fca5a5;
	font-size: 9px;
	font-weight: 800;
	padding: 2px 6px;
	border-radius: 20px;
	letter-spacing: 0.05em;
}
.urgency-row {
	margin-bottom: 12px;
}
.urgency-btn {
	flex: 1;
	padding: 12px;
	border-radius: 10px;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.06);
	color: #94a3b8;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.15s;
}
.urgency-normal.active-urg {
	background: rgba(6, 182, 212, 0.2);
	border-color: rgba(6, 182, 212, 0.6);
	color: #06b6d4;
}
.urgency-urgent.active-urg {
	background: rgba(239, 68, 68, 0.2);
	border-color: rgba(239, 68, 68, 0.6);
	color: #ef4444;
}
.req-dept {
	font-size: 13px;
	font-weight: 800;
	color: #f8fbff;
	margin-bottom: 1px;
}
.req-room {
	font-size: 11px;
	color: #a9b9ca;
	margin-bottom: 3px;
}
.req-note {
	font-size: 11px;
	color: #c4d4e4;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	padding: 5px 9px;
	margin-bottom: 5px;
	line-height: 1.4;
	border-left: 3px solid rgba(66, 200, 255, 0.48);
}
.req-meta-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.btn-cancel-req {
	font-size: 11px;
	color: #ef4444;
	background: none;
	border: none;
	cursor: pointer;
	font-family: inherit;
	font-weight: 700;
	padding: 0;
}
.tracker {
	display: flex;
	align-items: center;
	margin: 7px 0 3px;
}
.track-step {
	flex: 1;
	text-align: center;
}
.track-dot {
	width: 17px;
	height: 17px;
	border-radius: 50%;
	margin: 0 auto 3px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 7px;
	font-weight: 700;
	border: 2px solid rgba(132, 200, 255, 0.18);
	background: rgba(255, 255, 255, 0.08);
	color: #5f7891;
}
.track-dot.done {
	background: #117bff;
	border-color: #42c8ff;
	color: #fff;
}
.track-dot.active {
	background: #4fc3f7;
	border-color: #4fc3f7;
	color: #fff;
}
.track-lbl {
	font-size: 8px;
	color: #94a3b8;
	font-weight: 600;
	letter-spacing: 0.01em;
}
.track-line {
	flex: none;
	width: 12px;
	height: 2px;
	background: rgba(132, 200, 255, 0.18);
	margin-bottom: 17px;
}
.track-line.done {
	background: #42c8ff;
}
.track-ts {
	font-size: 7px;
	color: #4fc3f7;
	font-weight: 600;
	margin-top: 2px;
	min-height: 9px;
	letter-spacing: 0.01em;
}
.doc-live-status {
	font-size: 13px;
	font-weight: 700;
	padding: 8px 12px;
	border-radius: 8px;
	margin: 8px 0;
	text-align: center;
}
.pending-status {
	background: rgba(148, 163, 184, 0.12);
	color: #94a3b8;
}
.assigned-status {
	background: rgba(59, 130, 246, 0.12);
	color: #93c5fd;
}
.onway-status {
	background: rgba(6, 182, 212, 0.12);
	color: #67e8f9;
}
.arrived-status {
	background: rgba(34, 197, 94, 0.15);
	color: #86efac;
}
.doctor-quick-replies {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 7px;
	margin: 10px 0 6px;
}
.doctor-qr-btn {
	min-height: 38px;
	border: 1px solid rgba(56, 189, 248, 0.24);
	border-radius: 8px;
	background: rgba(14, 165, 233, 0.1);
	color: #bae6fd;
	font: inherit;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
}
.doctor-qr-btn.danger {
	border-color: rgba(239, 68, 68, 0.3);
	background: rgba(239, 68, 68, 0.1);
	color: #fecaca;
}
.doctor-msg-list {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin: 8px 0;
}
.doctor-msg-bubble {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	border: 1px solid rgba(34, 197, 94, 0.2);
	background: rgba(34, 197, 94, 0.08);
	border-radius: 8px;
	padding: 7px 9px;
	color: #d1fae5;
	font-size: 11px;
	font-weight: 700;
}
.doctor-msg-bubble em {
	flex: 0 0 auto;
	color: #86efac;
	font-style: normal;
	font-size: 10px;
}
.doctor-msg-bubble.interp {
	display: block;
	margin: 7px 0;
	border-color: rgba(34, 197, 94, 0.25);
}
.doctor-msg-header {
	display: flex;
	justify-content: space-between;
	gap: 8px;
	margin-bottom: 3px;
	color: #86efac;
	font-size: 10px;
	font-weight: 800;
}
.doc-cancelled-banner {
	font-size: 13px;
	font-weight: 700;
	padding: 8px 12px;
	border-radius: 8px;
	margin: 8px 0;
	text-align: center;
	background: rgba(239, 68, 68, 0.12);
	color: #fca5a5;
	border: 1px solid rgba(239, 68, 68, 0.25);
}
.completion-summary {
	background: rgba(34, 197, 94, 0.08);
	border: 1px solid rgba(34, 197, 94, 0.25);
	border-radius: 10px;
	padding: 12px 14px;
	margin: 10px 0;
}
.completion-title {
	font-size: 13px;
	font-weight: 800;
	color: #86efac;
	margin-bottom: 8px;
}
.completion-row {
	display: flex;
	justify-content: space-between;
	font-size: 12px;
	color: #94a3b8;
	padding: 3px 0;
}
.completion-row span:last-child {
	color: #f8fbff;
	font-weight: 600;
}
.completion-row em {
	font-style: normal;
	color: #42e8b4;
	font-size: 11px;
}
.btn-accept {
	width: 100%;
	background: linear-gradient(135deg, #065f46, #0d9488);
	color: #fff;
	border: none;
	padding: 13px;
	border-radius: var(--r-md);
	font-size: 13px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	margin-top: 10px;
	box-shadow: 0 0 14px rgba(13, 148, 136, 0.24), var(--shadow-sm);
	transition: transform 0.1s var(--ease-out);
}
.btn-accept:active {
	transform: scale(0.96);
}
.btn-accept-locked {
	width: 100%;
	background: rgba(255, 255, 255, 0.05);
	color: rgba(255, 255, 255, 0.35);
	border: 1px solid rgba(255, 255, 255, 0.1);
	padding: 13px;
	border-radius: 11px;
	font-size: 12px;
	font-weight: 600;
	margin-top: 10px;
	text-align: center;
	cursor: not-allowed;
}
/* ── Settings tab ─────────────────────────────────────────────────────────── */
.sett-card {
	background: linear-gradient(
		160deg,
		rgba(16, 32, 56, 0.88),
		rgba(9, 20, 36, 0.94)
	);
	border: 1px solid rgba(132, 200, 255, 0.14);
	border-radius: var(--r-lg);
	padding: 16px;
	margin-bottom: 14px;
	-webkit-backdrop-filter: blur(16px) saturate(160%);
	backdrop-filter: blur(16px) saturate(160%);
}
.sett-card-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
}
.sett-card-title {
	font-size: 13px;
	font-weight: 800;
	color: #e2e8f0;
	margin-bottom: 4px;
}
.sett-card-sub {
	font-size: 11px;
	color: #64748b;
	line-height: 1.5;
}
.sett-label {
	font-size: 11px;
	font-weight: 700;
	color: #84a1bc;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.sett-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
	margin-top: 14px;
}
.sett-field {
}
.sett-input {
	width: 100%;
	background: rgba(255, 255, 255, 0.04);
	border: 1px solid rgba(132, 200, 255, 0.16);
	border-radius: var(--r-md);
	padding: 10px 12px;
	color: #e2e8f0;
	font-size: 13px;
	font-family: inherit;
	outline: none;
	transition: border-color 0.2s var(--ease-out);
}
.sett-input:focus {
	border-color: rgba(66, 200, 255, 0.45);
	box-shadow: 0 0 0 3px rgba(66, 200, 255, 0.10);
}
.sett-num {
	width: 80px;
	text-align: center;
}
.sett-unit {
	font-size: 12px;
	color: #64748b;
	white-space: nowrap;
}
.sett-save-btn {
	background: linear-gradient(135deg, #0d9488, #0891b2);
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 10px 16px;
	font-size: 12px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	white-space: nowrap;
}
.sett-send-btn {
	width: 100%;
	margin-top: 10px;
	background: rgba(14, 165, 233, 0.08);
	border: 1px solid rgba(14, 165, 233, 0.25);
	border-radius: 10px;
	padding: 10px;
	color: #38bdf8;
	font-size: 12px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
}
/* Toggle switch */
.sett-toggle {
	position: relative;
	display: inline-block;
	width: 46px;
	height: 26px;
	flex-shrink: 0;
}
.sett-toggle input {
	opacity: 0;
	width: 0;
	height: 0;
	position: absolute;
}
.sett-toggle-track {
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.15);
	border-radius: 13px;
	transition: background 0.25s;
}
.sett-toggle input:checked ~ .sett-toggle-track {
	background: linear-gradient(135deg, #ef4444, #dc2626);
	border-color: rgba(239, 68, 68, 0.5);
}
.sett-toggle-thumb {
	position: absolute;
	top: 3px;
	left: 3px;
	width: 18px;
	height: 18px;
	background: #fff;
	border-radius: 50%;
	transition: transform 0.25s;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.sett-toggle input:checked ~ .sett-toggle-track .sett-toggle-thumb {
	transform: translateX(20px);
}
.admin-msg-bubble {
	background: rgba(14, 165, 233, 0.1);
	border: 1px solid rgba(14, 165, 233, 0.28);
	border-radius: 10px;
	padding: 9px 11px;
	margin-top: 8px;
}
.admin-msg-header {
	font-size: 10px;
	font-weight: 700;
	color: #38bdf8;
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.admin-msg-ts {
	font-weight: 400;
	color: #64748b;
	font-size: 10px;
}
.admin-msg-text {
	font-size: 13px;
	color: #e2e8f0;
	line-height: 1.45;
}
.interp-sla-banner {
	width: 100%;
	padding: 10px 12px;
	border-radius: 9px;
	font-size: 13px;
	font-weight: 700;
	margin-top: 10px;
	margin-bottom: 2px;
	text-align: center;
	line-height: 1.4;
}
.interp-sla-warn {
	background: rgba(245, 158, 11, 0.15);
	color: #fcd34d;
	border: 1px solid rgba(245, 158, 11, 0.4);
}
.interp-sla-crit {
	background: rgba(239, 68, 68, 0.15);
	color: #fca5a5;
	border: 1px solid rgba(239, 68, 68, 0.45);
	animation: sla-pulse 1.6s ease-in-out infinite;
}
.btn-complete {
	width: 100%;
	background: linear-gradient(135deg, #042f2e, #065f46);
	color: #42e8b4;
	border: 1px solid rgba(66, 232, 180, 0.36);
	padding: 13px;
	border-radius: var(--r-md);
	font-size: 13px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	margin-top: 10px;
	letter-spacing: 0.02em;
	transition: transform 0.1s var(--ease-out);
}
.btn-complete:active {
	transform: scale(0.96);
}
.btn-onway {
	width: 100%;
	background: linear-gradient(135deg, #5b21b6, #7c3aed);
	color: #fff;
	border: none;
	padding: 13px;
	border-radius: var(--r-md);
	font-size: 13px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	margin-top: 10px;
	box-shadow: 0 0 14px rgba(124, 58, 237, 0.24), var(--shadow-sm);
	transition: transform 0.1s var(--ease-out);
}
.btn-onway:active {
	transform: scale(0.96);
}
.btn-arrived {
	width: 100%;
	background: linear-gradient(135deg, #1e6fff, #42c8ff);
	color: #fff;
	border: none;
	padding: 13px;
	border-radius: var(--r-md);
	font-size: 13px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	margin-top: 10px;
	box-shadow: 0 0 14px rgba(66, 200, 255, 0.22), var(--shadow-sm);
	transition: transform 0.1s var(--ease-out);
}
.btn-arrived:active {
	transform: scale(0.96);
}
.avail-bar {
	display: flex;
	flex-direction: column;
	background: linear-gradient(
		145deg,
		rgba(255, 255, 255, 0.11),
		rgba(255, 255, 255, 0.05)
	);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 14px;
	padding: 12px 16px;
	margin-top: 14px;
	gap: 10px;
	position: relative;
	overflow: hidden;
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.13) inset,
		0 6px 24px rgba(0, 0, 0, 0.32);
}
.avail-bar::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		135deg,
		rgba(255, 255, 255, 0.09) 0%,
		transparent 50%
	);
	border-radius: inherit;
	pointer-events: none;
}
.avail-text {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
	position: relative;
	z-index: 1;
}
.avail-sub {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.7);
	margin-top: 2px;
	position: relative;
	z-index: 1;
}
.status-btns {
	display: flex;
	gap: 7px;
	position: relative;
	z-index: 1;
}
.status-btn {
	flex: 1;
	background: linear-gradient(
		145deg,
		rgba(255, 255, 255, 0.12),
		rgba(255, 255, 255, 0.05)
	);
	border: 1px solid rgba(255, 255, 255, 0.20);
	border-radius: var(--r-md);
	color: rgba(255, 255, 255, 0.75);
	font-size: 11px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	padding: 8px 2px;
	transition:
		all 0.2s var(--ease-out),
		transform 0.1s var(--ease-out);
	box-shadow:
		0 1px 0 rgba(255, 255, 255, 0.10) inset,
		var(--shadow-sm);
}
.status-btn:hover {
	transform: translateY(-2px);
}
.status-btn:active {
	transform: scale(0.96);
}
.status-btn.s-available {
	background: linear-gradient(
		145deg,
		rgba(52, 211, 153, 0.28),
		rgba(52, 211, 153, 0.12)
	);
	border-color: rgba(52, 211, 153, 0.70);
	color: #34d399;
	box-shadow:
		0 1px 0 rgba(52, 211, 153, 0.20) inset,
		0 4px 16px rgba(52, 211, 153, 0.22);
}
.status-btn.s-break {
	background: linear-gradient(
		145deg,
		rgba(245, 158, 11, 0.28),
		rgba(245, 158, 11, 0.12)
	);
	border-color: rgba(245, 158, 11, 0.70);
	color: #f59e0b;
	box-shadow:
		0 1px 0 rgba(245, 158, 11, 0.20) inset,
		0 4px 16px rgba(245, 158, 11, 0.20);
}
.status-btn.s-offline {
	background: linear-gradient(
		145deg,
		rgba(100, 116, 139, 0.28),
		rgba(100, 116, 139, 0.12)
	);
	border-color: rgba(100, 116, 139, 0.70);
	color: #94a3b8;
	box-shadow:
		0 1px 0 rgba(100, 116, 139, 0.20) inset,
		0 4px 16px rgba(0, 0, 0, 0.20);
}
.admin-interp-card.break {
	border-color: rgba(245, 158, 11, 0.3);
}
.modal-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 200;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	backdrop-filter: blur(10px);
}
.modal-sheet {
	background: linear-gradient(
		180deg,
		rgba(13, 27, 47, 0.97),
		rgba(5, 13, 25, 0.99)
	);
	border-top: 1px solid rgba(66, 200, 255, 0.22);
	border-left: 1px solid rgba(66, 200, 255, 0.10);
	border-right: 1px solid rgba(66, 200, 255, 0.10);
	border-radius: var(--r-xl) var(--r-xl) 0 0;
	padding: 8px 20px 36px;
	width: 100%;
	max-width: 440px;
	max-height: 85vh;
	overflow-y: auto;
	-webkit-backdrop-filter: blur(28px) saturate(180%);
	backdrop-filter: blur(28px) saturate(180%);
	box-shadow: 0 -24px 70px rgba(0, 0, 0, 0.5);
	animation: sheetUp 0.32s ease both;
}
.modal-handle {
	width: 36px;
	height: 4px;
	background: rgba(255, 255, 255, 0.15);
	border-radius: var(--r-pill);
	margin: 12px auto 20px;
}
.modal-title {
	font-size: 19px;
	font-weight: 800;
	color: #f8fbff;
	margin-bottom: 6px;
}
.modal-dept-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: rgba(66, 200, 255, 0.12);
	color: #a8d9ff;
	border: 1px solid rgba(66, 200, 255, 0.24);
	font-size: 12px;
	font-weight: 700;
	padding: 5px 12px;
	border-radius: 20px;
	margin-bottom: 18px;
}
/* ================= ORBITAL LOGIN HUB ================= */
.hub-screen {
	position: relative;
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 32px 20px 32px;
	min-height: 100vh;
	overflow: hidden;
}
.hub-screen::before {
	content: "";
	position: absolute;
	inset: -30%;
	background:
		radial-gradient(
			circle at 50% 50%,
			rgba(66, 200, 255, 0.18),
			transparent 36%
		),
		radial-gradient(circle at 18% 22%, rgba(0, 116, 255, 0.18), transparent 30%),
		radial-gradient(
			circle at 82% 78%,
			rgba(66, 232, 180, 0.12),
			transparent 32%
		);
	filter: blur(2px);
	pointer-events: none;
	animation: hubAura 14s ease-in-out infinite alternate;
	z-index: 0;
}
.hub-screen::after {
	content: "";
	position: absolute;
	inset: 0;
	background-image:
		radial-gradient(circle, rgba(110, 210, 255, 0.5) 0 1px, transparent 1.4px),
		radial-gradient(circle, rgba(255, 255, 255, 0.18) 0 1px, transparent 1.3px);
	background-size:
		46px 46px,
		90px 90px;
	background-position:
		0 0,
		18px 24px;
	opacity: 0.32;
	animation: particleDrift 20s linear infinite;
	pointer-events: none;
	z-index: 0;
}
.hub-brand {
	position: relative;
	z-index: 3;
	text-align: center;
	margin-top: 0;
	animation: riseIn 0.8s ease both;
}
.hub-brand-title {
	font-size: 32px;
	font-weight: 800;
	color: #fff;
	letter-spacing: 0.01em;
}
.hub-brand-title span {
	color: var(--blue);
	text-shadow: 0 0 28px rgba(66, 200, 255, 0.85);
}
.hub-brand-sub {
	font-size: 11px;
	color: #8fb6d6;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin-top: 8px;
	opacity: 0.85;
}
.hub-stage {
	position: relative;
	width: min(420px, 90vw);
	aspect-ratio: 1 / 1;
	margin: 24px auto 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}
.hub-ring {
	position: absolute;
	inset: 0;
	border-radius: 50%;
	border: 1px solid rgba(132, 200, 255, 0.32);
	box-shadow: inset 0 0 80px rgba(66, 200, 255, 0.07);
	animation: ringSpin 38s linear infinite;
}
.hub-ring.r2 {
	inset: 14%;
	border-color: rgba(66, 232, 180, 0.24);
	animation-direction: reverse;
	animation-duration: 48s;
}
.hub-ring.r3 {
	inset: 26%;
	border-color: rgba(132, 200, 255, 0.18);
	animation-duration: 60s;
}
.hub-ring.glow {
	inset: -8%;
	border: 1.5px solid rgba(66, 200, 255, 0.28);
	box-shadow:
		0 0 100px rgba(66, 200, 255, 0.28) inset,
		0 0 80px rgba(66, 200, 255, 0.16);
	animation: ringPulse 4.6s ease-in-out infinite;
}
.hub-core {
	position: relative;
	width: 46%;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: radial-gradient(
		circle at 28% 20%,
		rgba(220, 242, 255, 1),
		rgba(66, 150, 255, 0.97) 30%,
		rgba(18, 75, 200, 0.94) 58%,
		rgba(6, 26, 96, 0.99) 85%
	);
	border: 2px solid rgba(220, 245, 255, 0.72);
	box-shadow:
		0 0 0 9px rgba(6, 14, 28, 0.85),
		0 0 55px rgba(66, 200, 255, 0.75),
		0 0 110px rgba(46, 150, 255, 0.55),
		0 0 200px rgba(20, 80, 200, 0.25),
		inset 0 3px 32px rgba(255, 255, 255, 0.48);
	cursor: pointer;
	color: #fff;
	text-align: center;
	padding: 10px;
	transition:
		transform 0.35s cubic-bezier(0.22, 0.9, 0.32, 1.4),
		box-shadow 0.35s ease,
		filter 0.35s ease;
	z-index: 5;
	animation:
		coreFloat 5s ease-in-out infinite,
		logoIntro 1s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}
.hub-core::before {
	content: "";
	position: absolute;
	inset: 17% 17% 35%;
	background: center / contain no-repeat url(/assets/logos/logo-white.png);
	filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.55));
	pointer-events: none;
}
.hub-core::after {
	content: "";
	position: absolute;
	inset: -18%;
	border: 1.5px solid rgba(255, 255, 255, 0.22);
	border-radius: 50%;
	animation: coreRing 3s ease-in-out infinite;
}
.hub-core .core-label {
	position: absolute;
	bottom: 20%;
	left: 0;
	right: 0;
	text-align: center;
	line-height: 1;
}
.hub-core .core-label small {
	display: block;
	font-size: 10px;
	font-weight: 800;
	color: rgba(205, 235, 255, 0.9);
	letter-spacing: 0.2em;
	text-transform: uppercase;
}
.hub-core:hover {
	transform: scale(1.07);
	box-shadow:
		0 0 0 9px rgba(6, 14, 28, 0.85),
		0 0 70px rgba(66, 200, 255, 0.95),
		0 0 140px rgba(46, 150, 255, 0.7),
		0 0 240px rgba(20, 80, 200, 0.35),
		inset 0 3px 36px rgba(255, 255, 255, 0.55);
}
.hub-core:active {
	transform: scale(0.95);
}
.hub-core.expanded {
	transform: scale(0.76);
	filter: saturate(1.15) brightness(1.06);
}
.hub-node {
	position: absolute;
	width: 96px;
	height: 96px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: radial-gradient(
		circle at 35% 28%,
		rgba(30, 58, 100, 0.98),
		rgba(7, 18, 36, 0.98)
	);
	border: 1px solid rgba(132, 200, 255, 0.38);
	box-shadow:
		0 16px 44px rgba(0, 0, 0, 0.55),
		0 0 36px rgba(66, 200, 255, 0.22),
		inset 0 1px 14px rgba(255, 255, 255, 0.1);
	color: #eaf8ff;
	text-align: center;
	cursor: pointer;
	backdrop-filter: blur(20px);
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
	pointer-events: none;
	transition:
		transform 0.55s cubic-bezier(0.22, 0.9, 0.32, 1.45),
		opacity 0.35s ease,
		box-shadow 0.3s ease,
		border-color 0.3s ease;
	z-index: 4;
}
.hub-node .node-icon {
	font-size: 28px;
	line-height: 1;
	margin-bottom: 5px;
	filter: drop-shadow(0 0 14px rgba(66, 200, 255, 0.55));
}
.hub-node .node-label {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.1;
}
.hub-node .node-sub {
	font-size: 9px;
	font-weight: 700;
	color: #9fc4e2;
	letter-spacing: 0.06em;
	margin-top: 2px;
	opacity: 0.85;
}
.hub-node:hover {
	border-color: rgba(66, 200, 255, 0.85);
	box-shadow:
		0 18px 48px rgba(0, 0, 0, 0.5),
		0 0 44px rgba(66, 200, 255, 0.35),
		inset 0 1px 16px rgba(255, 255, 255, 0.14);
	transform: translate(-50%, -50%) scale(1.08) !important;
}
.hub-node:active {
	transform: translate(-50%, -50%) scale(0.96) !important;
}
.hub-stage.expanded .hub-node.doc {
	left: 18%;
	top: 25%;
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
	pointer-events: auto;
	transition-delay: 0.05s;
}
.hub-stage.expanded .hub-node.interp {
	left: 82%;
	top: 25%;
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
	pointer-events: auto;
	transition-delay: 0.13s;
}
.hub-stage.expanded .hub-node.admin {
	left: 50%;
	top: 90%;
	transform: translate(-50%, -50%) scale(1);
	opacity: 1;
	pointer-events: auto;
	transition-delay: 0.21s;
}
.hub-node {
	left: 50%;
	top: 50%;
}
.hub-node.doc .node-icon {
	filter: drop-shadow(0 0 12px rgba(66, 200, 255, 0.7));
}
.hub-node.doc {
	border-color: rgba(66, 200, 255, 0.35);
}
.hub-node.interp {
	border-color: rgba(66, 232, 180, 0.4);
}
.hub-node.interp .node-icon {
	filter: drop-shadow(0 0 12px rgba(66, 232, 180, 0.7));
}
.hub-node.admin {
	border-color: rgba(196, 221, 255, 0.35);
}
.hub-node.admin .node-icon {
	filter: drop-shadow(0 0 12px rgba(196, 221, 255, 0.55));
}
.hub-line {
	position: absolute;
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(66, 200, 255, 0.4),
		transparent
	);
	transform-origin: left center;
	opacity: 0;
	transition: opacity 0.5s ease;
	pointer-events: none;
	z-index: 1;
}
.hub-stage.expanded .hub-line {
	opacity: 0.8;
}
.hub-foot {
	position: relative;
	z-index: 3;
	margin-top: 20px;
	padding-bottom: 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	text-align: center;
	animation: riseIn 0.9s ease both 0.35s;
}
.hub-foot-tagline {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #8aaec8;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	opacity: 0.85;
}
.hub-foot .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #42e8b4;
	box-shadow: 0 0 12px #42e8b4;
	animation: pulse 1.8s infinite;
	flex-shrink: 0;
}
.hub-foot-m42 {
	font-size: 15px;
	font-weight: 800;
	letter-spacing: 0.3em;
	text-transform: uppercase;
	background: linear-gradient(90deg, #42c8ff 0%, #ffffff 50%, #42e8b4 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	filter: drop-shadow(0 0 12px rgba(66, 200, 255, 0.6));
	animation: m42Shimmer 4s ease-in-out infinite;
}
@keyframes m42Shimmer {
	0%,
	100% {
		filter: drop-shadow(0 0 10px rgba(66, 200, 255, 0.55));
	}
	50% {
		filter: drop-shadow(0 0 22px rgba(66, 200, 255, 0.9));
	}
}
@keyframes hubAura {
	0% {
		transform: rotate(0deg) scale(1);
	}
	100% {
		transform: rotate(12deg) scale(1.1);
	}
}
@keyframes ringSpin {
	from {
		transform: rotate(0);
	}
	to {
		transform: rotate(360deg);
	}
}
@keyframes spin {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}
@keyframes ringPulse {
	0%,
	100% {
		box-shadow:
			0 0 80px rgba(66, 200, 255, 0.18) inset,
			0 0 60px rgba(66, 200, 255, 0.12);
		transform: scale(1);
	}
	50% {
		box-shadow:
			0 0 100px rgba(66, 200, 255, 0.35) inset,
			0 0 90px rgba(66, 200, 255, 0.22);
		transform: scale(1.02);
	}
}
@keyframes coreFloat {
	0%,
	100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-6px);
	}
}
@keyframes coreRing {
	0%,
	100% {
		transform: scale(0.9);
		opacity: 0.5;
	}
	50% {
		transform: scale(1.18);
		opacity: 0.05;
	}
}
@keyframes hintPulse {
	0%,
	100% {
		opacity: 0.55;
	}
	50% {
		opacity: 1;
	}
}
.empty {
	text-align: center;
	padding: 40px 20px;
	color: #94a3b8;
}
.empty-icon {
	font-size: 44px;
	margin-bottom: 14px;
}
.empty-title {
	font-size: 15px;
	font-weight: 800;
	color: #c8d8e8;
	margin-bottom: 6px;
}
.empty-sub {
	font-size: 12px;
	line-height: 1.5;
}
.pulse {
	animation: pulse 1.8s infinite;
}
@keyframes pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.4;
	}
}
.new-dot {
	width: 8px;
	height: 8px;
	background: #ef4444;
	border-radius: 50%;
	display: inline-block;
	margin-left: 6px;
	animation: pulse 1.2s infinite;
	vertical-align: middle;
}
.sec-header {
	display: flex;
	align-items: center;
	margin-bottom: 12px;
}
.sec-title {
	font-size: 11px;
	font-weight: 800;
	color: #8ba7c1;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}
.tab-row {
	display: flex;
	background: rgba(255, 255, 255, 0.05);
	border: 1px solid rgba(132, 200, 255, 0.12);
	border-radius: var(--r-md);
	padding: 3px;
	margin-bottom: 16px;
}
.tab-item {
	flex: 1;
	padding: 9px;
	border-radius: var(--r-sm);
	border: none;
	font-family: inherit;
	font-size: 12px;
	font-weight: 800;
	cursor: pointer;
	transition: all 0.18s var(--ease-out);
	background: transparent;
	color: #8ba7c1;
}
.tab-item.active {
	background: rgba(66, 200, 255, 0.16);
	color: #eaf8ff;
	box-shadow: 0 0 22px rgba(66, 200, 255, 0.14);
}
.assigned-interp {
	font-size: 12px;
	color: #1d4ed8;
	font-weight: 600;
	background: #eff6ff;
	padding: 6px 10px;
	border-radius: 8px;
	margin-bottom: 8px;
}
.onway-status {
	font-size: 12px;
	color: #5b21b6;
	font-weight: 700;
	margin-bottom: 8px;
}
.arrived-status {
	font-size: 12px;
	color: #065f46;
	font-weight: 700;
	margin-bottom: 8px;
}
.job-card {
	border: 2px solid #3b82f6;
}
.job-card.onway {
	border-color: #8b5cf6;
}
@keyframes logoIntro {
	0% {
		opacity: 0;
		transform: scale(0.68) translateY(18px);
		filter: blur(10px);
	}
	100% {
		opacity: 1;
		transform: scale(1) translateY(0);
		filter: blur(0);
	}
}
@keyframes riseIn {
	from {
		opacity: 0;
		transform: translateY(18px);
		filter: blur(8px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}
@keyframes screenIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
@keyframes sheetUp {
	from {
		transform: translateY(30px);
		opacity: 0.4;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
@media (min-width: 640px) {
	.app {
		max-width: 680px;
	}
	.dept-grid {
		grid-template-columns: repeat(3, 1fr);
	}
	.stats-row {
		grid-template-columns: repeat(4, 1fr);
	}
	.card-section {
		padding: 22px 28px 0;
	}
	.hub-stage {
		width: min(460px, 82vw);
	}
	.hub-brand-title {
		font-size: 36px;
	}
	.modal-overlay {
		align-items: center;
	}
	.modal-sheet {
		border-radius: 22px;
		max-width: 500px;
		max-height: 80vh;
	}
	.install-bar {
		max-width: 680px;
	}
	.admin-bottom-tabs {
		max-width: 680px;
	}
}
@media (min-width: 768px) {
	.app {
		max-width: 860px;
	}
	.hub-stage {
		width: min(520px, 72vw);
	}
	.hub-brand-title {
		font-size: 38px;
	}
	.card-section {
		padding: 24px 32px 0;
	}
	.dept-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	.modal-sheet {
		max-width: 520px;
	}
	.install-bar {
		max-width: 860px;
	}
	.admin-bottom-tabs {
		max-width: 860px;
	}
}
@media (min-width: 1024px) {
	body {
		align-items: flex-start;
	}
	.app {
		max-width: 100%;
		width: 100%;
	}
	.nav {
		padding: 16px 36px;
	}
	.nav-title {
		font-size: 17px;
	}
	.nav-logo-icon {
		width: 38px;
		height: 38px;
	}
	.dept-grid {
		grid-template-columns: repeat(4, 1fr);
	}
	.stats-row {
		grid-template-columns: repeat(4, 1fr);
	}
	.card-section {
		padding: 28px 36px 0;
		max-width: 1100px;
		margin-left: auto;
		margin-right: auto;
	}
	.hub-stage {
		width: min(580px, 56vw);
	}
	.hub-brand-title {
		font-size: 38px;
	}
	.hub-core .core-label small {
		font-size: 11px;
	}
	.tab-row {
		max-width: 500px;
	}
	.btn-primary {
		font-size: 16px;
	}
	.modal-overlay {
		align-items: center;
	}
	.modal-sheet {
		border-radius: 22px;
		max-width: 520px;
		max-height: 78vh;
	}
	.install-bar {
		max-width: 100%;
	}
	.req-cards-wrap {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 14px;
	}
	/* Doctor / Interpreter — left side panel */
	.app:has(.doc-hero),
	.app:has(.interp-hero) {
		display: grid;
		grid-template-columns: 320px 1fr;
		grid-template-rows: auto 1fr;
		grid-template-areas: "nav nav" "side main";
		min-height: 100vh;
	}
	.app:has(.doc-hero) .nav,
	.app:has(.interp-hero) .nav {
		grid-area: nav;
		padding: 16px 36px;
	}
	.doc-hero,
	.interp-hero {
		grid-area: side;
		border-right: 1px solid rgba(125, 205, 255, 0.12);
		border-bottom: none;
		position: sticky;
		top: 0;
		min-height: calc(100vh - 65px);
		align-self: start;
	}
	.app:has(.doc-hero) .screen,
	.app:has(.interp-hero) .screen {
		grid-area: main;
		overflow-y: auto;
		/* no bottom nav in side-panel layout */
		padding-bottom: 24px;
	}
	.app:has(.doc-hero) .card-section,
	.app:has(.interp-hero) .card-section {
		padding: 28px 36px 0;
		max-width: 900px;
	}
	.app:has(.doc-hero) .card-section > .req-card,
	.app:has(.interp-hero) .card-section > .req-card {
		display: inline-block;
		width: calc(50% - 8px);
	}
	/* Cap button width in side-panel layout */
	.app:has(.doc-hero) .btn-primary,
	.app:has(.doc-hero) .btn-secondary,
	.app:has(.interp-hero) .btn-primary,
	.app:has(.interp-hero) .btn-secondary {
		max-width: 480px;
	}
	/* Admin — left sidebar nav */
	.app:has(.admin-bottom-tabs) {
		display: grid;
		grid-template-columns: 210px 1fr;
		grid-template-rows: auto 1fr;
		grid-template-areas: "nav nav" "sidebar main";
		min-height: 100vh;
	}
	.app:has(.admin-bottom-tabs) .nav {
		grid-area: nav;
		padding: 16px 36px;
	}
	.app:has(.admin-bottom-tabs) .admin-bottom-tabs {
		grid-area: sidebar;
		position: sticky;
		top: 0;
		height: calc(100vh - 65px);
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		padding: 10px 0;
		border-top: none;
		border-right: 1px solid rgba(66, 200, 255, 0.14);
		border-bottom: none;
		max-width: none;
		left: auto;
		right: auto;
		transform: none;
		overflow-y: auto;
		width: 210px;
	}
	.app:has(.admin-bottom-tabs) .admin-btab {
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
		padding: 12px 20px;
		gap: 10px;
		font-size: 13px;
		letter-spacing: 0;
		height: auto;
	}
	.app:has(.admin-bottom-tabs) .admin-btab span {
		font-size: 19px;
		flex-shrink: 0;
		line-height: 1;
	}
	.app:has(.admin-bottom-tabs) .btab-badge {
		position: static;
		margin-left: auto;
		font-size: 10px;
		min-width: 18px;
		height: 18px;
	}
	.app:has(.admin-bottom-tabs) .admin-screen {
		grid-area: main;
		overflow-y: auto;
		padding-bottom: 24px;
	}
	.app:has(.admin-bottom-tabs) .admin-screen .card-section {
		padding: 24px 36px;
		max-width: 100%;
		margin: 0;
	}
	.app:has(.admin-bottom-tabs) .stats-row {
		grid-template-columns: repeat(4, 1fr);
	}
	.app:has(.admin-bottom-tabs) .sla-alert-banner {
		left: 210px;
		transform: none;
		width: calc(100% - 210px);
		max-width: 100%;
	}
}
/* ── Ultra-wide screens (1440px+) — center interpreter content ───────────── */
@media (min-width: 1440px) {
	.app:has(.doc-hero) .card-section,
	.app:has(.interp-hero) .card-section {
		padding-left: max(36px, calc((100% - 820px) / 2));
		padding-right: max(36px, calc((100% - 820px) / 2));
		max-width: 100%;
	}
	.app:has(.admin-bottom-tabs) .admin-screen .card-section {
		max-width: 1100px;
		margin: 0 auto;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		animation: none !important;
		transition: none !important;
	}
}
.tab-hidden *,
.tab-hidden *::before,
.tab-hidden *::after {
	animation-play-state: paused !important;
}
.install-bar {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 440px;
	background: linear-gradient(
		135deg,
		rgba(13, 27, 47, 0.97),
		rgba(5, 13, 25, 0.99)
	);
	border-top: 1px solid rgba(66, 200, 255, 0.28);
	padding: 14px 18px 24px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	z-index: 999;
	backdrop-filter: blur(20px);
	animation: sheetUp 0.35s ease both;
	box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.4);
}
.install-bar-left {
	display: flex;
	align-items: center;
	gap: 12px;
}
.install-bar-icon {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: linear-gradient(
		145deg,
		rgba(70, 201, 255, 0.95),
		rgba(13, 67, 152, 0.9)
	);
	border: 1px solid rgba(213, 245, 255, 0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px;
	font-weight: 800;
	color: #fff;
	flex-shrink: 0;
	box-shadow: 0 0 20px rgba(66, 200, 255, 0.35);
}
.install-bar-text {
	font-size: 13px;
	font-weight: 700;
	color: #f8fbff;
	line-height: 1.3;
}
.install-bar-text small {
	display: block;
	font-size: 11px;
	color: #84a1bc;
	font-weight: 500;
	margin-top: 2px;
}
.install-bar-btn {
	background: linear-gradient(135deg, #117bff, #42c8ff);
	color: #fff;
	border: none;
	padding: 10px 18px;
	border-radius: 12px;
	font-size: 13px;
	font-weight: 800;
	font-family: inherit;
	cursor: pointer;
	white-space: nowrap;
	box-shadow: 0 8px 24px rgba(22, 119, 255, 0.35);
}
.install-bar-dismiss {
	background: none;
	border: none;
	color: #84a1bc;
	font-size: 18px;
	cursor: pointer;
	padding: 6px 8px;
	line-height: 1;
	flex-shrink: 0;
	border-radius: 8px;
	transition:
		color 0.2s,
		background 0.2s;
}
.install-bar-dismiss:hover {
	color: #fff;
	background: rgba(255, 255, 255, 0.1);
}
#updateBar {
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 440px;
	background: linear-gradient(135deg, #0d9488, #0891b2);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px 18px;
	z-index: 9999;
	box-shadow: 0 4px 20px rgba(8, 145, 178, 0.5);
	animation: sheetDown 0.3s ease both;
}
@keyframes sheetDown {
	from {
		transform: translateX(-50%) translateY(-100%);
	}
	to {
		transform: translateX(-50%) translateY(0);
	}
}
.update-bar-text {
	font-size: 13px;
	font-weight: 700;
	color: #fff;
}
.update-bar-btn {
	background: rgba(255, 255, 255, 0.2);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.4);
	border-radius: 8px;
	padding: 6px 14px;
	font-size: 12px;
	font-weight: 800;
	font-family: inherit;
	cursor: pointer;
	white-space: nowrap;
}
.nav-refresh-btn {
	background: rgba(66, 200, 255, 0.12);
	border: 1px solid rgba(66, 200, 255, 0.25);
	color: #42c8ff;
	font-size: 17px;
	width: 34px;
	height: 34px;
	border-radius: 10px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	transition:
		background 0.2s,
		transform 0.2s;
	flex-shrink: 0;
}
.nav-refresh-btn:active {
	background: rgba(66, 200, 255, 0.25);
	transform: rotate(180deg);
}
#ptr-ind {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	font-weight: 700;
	color: #42c8ff;
	background: rgba(8, 20, 40, 0.9);
	transition: opacity 0.1s;
	z-index: 200;
	pointer-events: none;
	overflow: hidden;
	height: 0;
}
/* Custom styles for the Search Bar */
.search-box {
	background: rgba(66, 200, 255, 0.08) !important;
	border: 1px solid rgba(66, 200, 255, 0.3) !important;
	margin-bottom: 20px;
	font-weight: 600;
}

.search-box:focus {
	background: rgba(66, 200, 255, 0.15) !important;
	border-color: var(--blue) !important;
	box-shadow: 0 0 20px rgba(66, 200, 255, 0.2);
}

.empty-search {
	text-align: center;
	padding: 30px;
	color: var(--muted);
	font-size: 14px;
	font-style: italic;
	background: rgba(255, 255, 255, 0.03);
	border-radius: 14px;
	border: 1px dashed var(--line);
}

.dept-list-container {
	max-height: 400px;
	overflow-y: auto;
	padding-right: 5px;
}

/* Custom Scrollbar for the list */
.dept-list-container::-webkit-scrollbar {
	width: 4px;
}
.dept-list-container::-webkit-scrollbar-thumb {
	background: var(--line);
	border-radius: 10px;
}

/* ── Notification status bar (interpreter screen) ─────────── */
.notif-status-bar {
	display: block;
	width: 100%;
	margin-top: 10px;
	padding: 11px 14px;
	border-radius: 11px;
	font-size: 12px;
	font-weight: 700;
	font-family: inherit;
	text-align: center;
	cursor: pointer;
	border: none;
	transition: all 0.2s;
}
.notif-status-bar.good {
	background: rgba(66, 232, 180, 0.14);
	color: #42e8b4;
	border: 1px solid rgba(66, 232, 180, 0.28);
	cursor: default;
}
.notif-status-bar.bad {
	background: rgba(239, 68, 68, 0.12);
	color: #fca5a5;
	border: 1px solid rgba(239, 68, 68, 0.28);
	cursor: default;
}
.notif-status-bar.btn-enable {
	background: rgba(245, 158, 11, 0.18);
	color: #fcd34d;
	border: 1px solid rgba(245, 158, 11, 0.38);
	animation: hintPulse 2s ease-in-out infinite;
}
.notif-status-bar.btn-enable:hover {
	background: rgba(245, 158, 11, 0.28);
}
.notif-health-card {
	display: flex;
	align-items: center;
	gap: 10px;
	width: 100%;
	margin-top: 10px;
	padding: 11px 12px;
	border-radius: 11px;
	border: 1px solid rgba(132, 200, 255, 0.14);
	background: rgba(12, 24, 41, 0.64);
	color: #f8fbff;
	font: inherit;
	text-align: left;
}
.notif-health-card.as-button {
	cursor: pointer;
}
.notif-health-card.good {
	border-color: rgba(66, 232, 180, 0.28);
	background: rgba(66, 232, 180, 0.11);
}
.notif-health-card.warn {
	border-color: rgba(245, 158, 11, 0.35);
	background: rgba(245, 158, 11, 0.13);
}
.notif-health-card.bad {
	border-color: rgba(239, 68, 68, 0.28);
	background: rgba(239, 68, 68, 0.11);
}
.notif-health-icon {
	flex: 0 0 auto;
	width: 30px;
	height: 30px;
	display: grid;
	place-items: center;
	border-radius: 8px;
	background: rgba(255, 255, 255, 0.08);
}
.notif-health-body {
	flex: 1;
	min-width: 0;
}
.notif-health-title {
	font-size: 12px;
	font-weight: 900;
	line-height: 1.25;
}
.notif-health-sub {
	margin-top: 2px;
	color: #9db6ce;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.35;
}
.notif-health-action {
	flex: 0 0 auto;
	border: 0;
	border-radius: 8px;
	padding: 7px 10px;
	background: rgba(255, 255, 255, 0.12);
	color: #f8fbff;
	font: inherit;
	font-size: 11px;
	font-weight: 900;
	cursor: pointer;
}
.notif-health-action.static {
	cursor: inherit;
}

/* ── Admin PIN pad ─────────────────────────────────────────── */
.pin-dots-row {
	display: flex;
	justify-content: center;
	gap: 14px;
	margin-bottom: 6px;
}
.pin-dot {
	width: 18px;
	height: 18px;
	border-radius: 50%;
	border: 2px solid rgba(132, 200, 255, 0.35);
	background: transparent;
	transition: all 0.15s;
}
.pin-dot.filled {
	background: var(--blue);
	border-color: var(--blue);
	box-shadow: 0 0 16px rgba(66, 200, 255, 0.55);
}
.pin-dots-row.pin-wrong .pin-dot.filled {
	background: #ef4444;
	border-color: #ef4444;
	box-shadow: 0 0 14px rgba(239, 68, 68, 0.5);
	animation: shake 0.35s ease;
}
.pin-error {
	font-size: 12px;
	color: #ef4444;
	margin-bottom: 6px;
	font-weight: 700;
}
.pin-pad {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	max-width: 240px;
	margin: 18px auto 0;
}
.pin-row {
	display: contents;
}
.pin-key {
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(132, 200, 255, 0.2);
	border-radius: 14px;
	font-size: 22px;
	font-weight: 700;
	color: #f8fbff;
	font-family: inherit;
	cursor: pointer;
	padding: 16px 8px;
	transition: all 0.14s;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}
.pin-key:hover {
	background: rgba(66, 200, 255, 0.15);
	border-color: rgba(66, 200, 255, 0.5);
}
.pin-key:active {
	transform: scale(0.91);
	background: rgba(66, 200, 255, 0.28);
}
.pin-key.ghost {
	pointer-events: none;
	background: transparent;
	border-color: transparent;
}
.pin-key.back {
	font-size: 18px;
}
@keyframes shake {
	0%,
	100% {
		transform: translateX(0);
	}
	20%,
	60% {
		transform: translateX(-7px);
	}
	40%,
	80% {
		transform: translateX(7px);
	}
}

/* ── Admin interpreter grid ────────────────────────────────── */
.admin-interp-grid {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-bottom: 4px;
}
.admin-interp-card {
	display: flex;
	align-items: center;
	gap: 12px;
	background: linear-gradient(
		160deg,
		rgba(16, 32, 56, 0.88),
		rgba(9, 20, 36, 0.94)
	);
	border: 1px solid rgba(132, 200, 255, 0.14);
	border-radius: 13px;
	padding: 11px 14px;
	backdrop-filter: blur(18px);
	box-shadow:
		0 1px 0 rgba(132, 200, 255, 0.1) inset,
		0 -1px 0 rgba(0, 0, 0, 0.25) inset,
		0 6px 20px rgba(0, 0, 0, 0.32);
}
.admin-interp-card.available {
	border-color: rgba(66, 232, 180, 0.32);
}
.admin-interp-card.busy {
	border-color: rgba(245, 158, 11, 0.3);
}
.admin-interp-card.offline {
	opacity: 0.45;
}
.admin-interp-dot {
	font-size: 16px;
	flex-shrink: 0;
}
.admin-interp-info {
	flex: 1;
	min-width: 0;
}
.admin-interp-name {
	font-size: 14px;
	font-weight: 700;
	color: #f8fbff;
}
.admin-interp-id {
	font-size: 11px;
	color: #84a1bc;
	margin-top: 2px;
}

/* ── Admin action button ───────────────────────────────────── */
.btn-small-action {
	margin-left: auto;
	background: rgba(66, 200, 255, 0.14);
	color: #42c8ff;
	border: 1px solid rgba(66, 200, 255, 0.32);
	border-radius: 9px;
	padding: 6px 12px;
	font-size: 11px;
	font-weight: 800;
	font-family: inherit;
	cursor: pointer;
	white-space: nowrap;
	transition: all 0.18s;
}
.btn-small-action:hover {
	background: rgba(66, 200, 255, 0.25);
	border-color: rgba(66, 200, 255, 0.6);
}

/* ── Admin bottom tab bar ──────────────────────────────────── */
.admin-screen {
	padding-bottom: 100px;
}
.admin-bottom-tabs {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 440px;
	background: rgba(4, 11, 22, 0.97);
	backdrop-filter: blur(24px);
	-webkit-backdrop-filter: blur(24px);
	border-top: 1px solid rgba(66, 200, 255, 0.14);
	display: flex;
	overflow-x: auto;
	overflow-y: hidden;
	scrollbar-width: none;
	z-index: 200;
	padding-bottom: env(safe-area-inset-bottom, 0);
}
.admin-bottom-tabs::-webkit-scrollbar {
	display: none;
}
.admin-btab {
	flex: 0 0 auto;
	min-width: 52px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 2px;
	padding: 10px 6px 10px;
	font-family: inherit;
	font-size: 10px;
	font-weight: 700;
	color: #5a7a99;
	border: none;
	background: transparent;
	cursor: pointer;
	position: relative;
	transition: color 0.18s;
	letter-spacing: 0.01em;
}
.admin-btab span {
	font-size: 18px;
	line-height: 1;
}
.admin-btab.active {
	color: #42c8ff;
}
.admin-btab.active span {
	filter: drop-shadow(0 0 6px rgba(66, 200, 255, 0.7));
}
.btab-badge {
	position: absolute;
	top: 6px;
	right: calc(50% - 18px);
	background: #ef4444;
	color: #fff;
	font-size: 9px;
	font-weight: 800;
	border-radius: 999px;
	min-width: 16px;
	height: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 4px;
}

/* ── Admin overview stats grid ─────────────────────────────── */
.admin-stats-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin-bottom: 4px;
}
.admin-stat-box {
	background: linear-gradient(
		160deg,
		rgba(16, 32, 56, 0.88),
		rgba(9, 20, 36, 0.94)
	);
	border: 1px solid rgba(132, 200, 255, 0.14);
	border-radius: 14px;
	padding: 14px 10px;
	text-align: center;
	backdrop-filter: blur(18px);
	box-shadow:
		0 1px 0 rgba(132, 200, 255, 0.1) inset,
		0 -1px 0 rgba(0, 0, 0, 0.25) inset,
		0 6px 20px rgba(0, 0, 0, 0.32);
}
.admin-stat-box.urgent {
	border-color: rgba(239, 68, 68, 0.35);
	background: rgba(60, 10, 10, 0.62);
}
.asb-num {
	font-size: 26px;
	font-weight: 800;
	color: #f8fbff;
	line-height: 1;
}
.asb-lbl {
	font-size: 10px;
	color: #84a1bc;
	font-weight: 700;
	margin-top: 4px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* ── Admin quick action buttons ──────────────────────────────── */
.admin-quick-actions {
	display: flex;
	gap: 8px;
	margin: 14px 0 2px;
}
.admin-qa-primary {
	flex: 1;
	background: linear-gradient(135deg, #0d9488, #0891b2);
	color: #fff;
	border: none;
	border-radius: 12px;
	padding: 13px 16px;
	font-size: 13px;
	font-weight: 800;
	font-family: inherit;
	cursor: pointer;
	letter-spacing: 0.01em;
	box-shadow: 0 4px 16px rgba(8, 145, 178, 0.3);
}
.admin-qa-primary:disabled {
	background: rgba(255, 255, 255, 0.06);
	color: rgba(255, 255, 255, 0.3);
	cursor: default;
	box-shadow: none;
}
.admin-qa-secondary {
	flex: 0 0 auto;
	background: rgba(255, 255, 255, 0.06);
	color: #84a1bc;
	border: 1px solid rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 13px 14px;
	font-size: 13px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
}

/* ── Compact active-task grid ─────────────────────────────────── */
.admin-active-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
	margin-bottom: 4px;
}
.admin-active-card {
	background: rgba(12, 24, 41, 0.85);
	border: 1px solid rgba(132, 200, 255, 0.14);
	border-radius: 10px;
	padding: 8px 9px;
	backdrop-filter: blur(18px);
	display: flex;
	flex-direction: column;
	gap: 2px;
}
.admin-active-card.aac-pick-open {
	border-color: rgba(59, 130, 246, 0.45);
	box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.2);
}
.admin-active-card.age-warn {
	border-color: rgba(245, 158, 11, 0.45);
}
.admin-active-card.age-urgent {
	border-color: rgba(239, 68, 68, 0.55);
}
.aac-top {
	display: flex;
	align-items: center;
	gap: 4px;
	flex-wrap: wrap;
	margin-bottom: 0;
}
.aac-id {
	font-size: 10px;
	color: #84a1bc;
	font-weight: 700;
}
.aac-dept {
	font-size: 11px;
	color: #f8fbff;
	font-weight: 700;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.aac-room {
	font-size: 10px;
	color: #94a3b8;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.aac-interp {
	font-size: 10px;
	color: #60a5fa;
	font-weight: 600;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.aac-actions {
	display: flex;
	gap: 4px;
	margin-top: 4px;
}
.aac-cancel-btn {
	flex: 0 0 36px;
	background: rgba(239, 68, 68, 0.12);
	color: #fca5a5;
	border: 1px solid rgba(239, 68, 68, 0.3);
	border-radius: 6px;
	padding: 5px 0;
	font-size: 12px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
}
.aac-reassign-btn {
	flex: 1;
	background: rgba(59, 130, 246, 0.12);
	color: #93c5fd;
	border: 1px solid rgba(59, 130, 246, 0.3);
	border-radius: 6px;
	padding: 5px 0;
	font-size: 10px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
}
.aac-pick-row {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin-top: 5px;
	padding-top: 5px;
	border-top: 1px solid rgba(132, 200, 255, 0.12);
}
.aac-pick-chip {
	background: rgba(59, 130, 246, 0.12);
	color: #93c5fd;
	border: 1px solid rgba(59, 130, 246, 0.28);
	border-radius: 5px;
	padding: 4px 8px;
	font-size: 10px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	transition: background 0.15s;
}
.aac-pick-chip:hover {
	background: rgba(59, 130, 246, 0.28);
	color: #fff;
}
.aac-pick-chip.aac-pick-current {
	background: rgba(66, 232, 180, 0.15);
	border-color: rgba(66, 232, 180, 0.4);
	color: #42e8b4;
}

/* ── Track page ───────────────────────────────────────────────── */
.trk-stats-row {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 6px;
	margin-bottom: 10px;
}
.trk-stat {
	background: rgba(12, 24, 41, 0.82);
	border: 1px solid rgba(132, 200, 255, 0.14);
	border-radius: 10px;
	padding: 8px 4px;
	text-align: center;
}
.trk-stat-num {
	font-size: 20px;
	font-weight: 800;
	line-height: 1.1;
	color: #f8fbff;
}
.trk-stat-num.trk-online {
	color: #42c8ff;
}
.trk-stat-num.trk-idle {
	color: #42e8b4;
}
.trk-stat-num.trk-busy {
	color: #ef4444;
}
.trk-stat-num.trk-break {
	color: #f59e0b;
}
.trk-stat-num.trk-off {
	color: #64748b;
}
.trk-stat-lbl {
	font-size: 9px;
	color: #84a1bc;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-top: 2px;
}
.trk-toolbar {
	display: flex;
	gap: 8px;
	margin-bottom: 10px;
	align-items: center;
}
.trk-search {
	flex: 1;
	background: rgba(12, 24, 41, 0.7);
	border: 1px solid rgba(132, 200, 255, 0.2);
	border-radius: 8px;
	padding: 8px 12px;
	font-size: 12px;
	color: #f8fbff;
	font-family: inherit;
	outline: none;
}
.trk-search::placeholder {
	color: #4a5568;
}
.trk-bulk-btn {
	background: rgba(17, 123, 255, 0.15);
	border: 1px solid rgba(66, 200, 255, 0.3);
	border-radius: 8px;
	padding: 8px 14px;
	font-size: 11px;
	font-weight: 700;
	color: #42c8ff;
	font-family: inherit;
	cursor: pointer;
	white-space: nowrap;
}
.trk-table-wrap {
	overflow-x: auto;
	border-radius: 12px;
	border: 1px solid rgba(132, 200, 255, 0.14);
}
.trk-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 11px;
}
.trk-th {
	background: rgba(8, 20, 42, 0.95);
	color: #84a1bc;
	padding: 9px 10px;
	text-align: left;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	white-space: nowrap;
	border-bottom: 1px solid rgba(132, 200, 255, 0.18);
}
.trk-th:first-child {
	border-radius: 12px 0 0 0;
}
.trk-th:last-child {
	border-radius: 0 12px 0 0;
}
.trk-td {
	padding: 9px 10px;
	border-bottom: 1px solid rgba(132, 200, 255, 0.07);
	vertical-align: middle;
	color: #f8fbff;
	white-space: nowrap;
}
.trk-row:last-child .trk-td {
	border-bottom: none;
}
.trk-row:hover .trk-td {
	background: rgba(17, 123, 255, 0.06);
}
.trk-row.trk-offline .trk-td {
	opacity: 0.5;
}
.trk-num {
	color: #84a1bc;
	font-weight: 700;
	text-align: center;
	width: 28px;
}
.trk-name {
	font-size: 11px;
	font-weight: 700;
	color: #f8fbff;
}
.trk-id {
	font-size: 9px;
	color: #84a1bc;
	margin-top: 1px;
}
.trk-task {
	font-size: 10px;
	color: #94a3b8;
	max-width: 130px;
	overflow: hidden;
	text-overflow: ellipsis;
}
.trk-lastseen {
	font-size: 10px;
	color: #84a1bc;
}
.trk-breakend {
	font-size: 10px;
	color: #f59e0b;
}
.trk-badge {
	font-size: 10px;
	font-weight: 800;
	padding: 3px 9px;
	border-radius: 20px;
	letter-spacing: 0.04em;
}
.trk-badge-idle {
	background: rgba(66, 232, 180, 0.15);
	color: #42e8b4;
	border: 1px solid rgba(66, 232, 180, 0.3);
}
.trk-badge-busy {
	background: rgba(239, 68, 68, 0.15);
	color: #fca5a5;
	border: 1px solid rgba(239, 68, 68, 0.3);
}
.trk-badge-break {
	background: rgba(245, 158, 11, 0.15);
	color: #fcd34d;
	border: 1px solid rgba(245, 158, 11, 0.3);
}
.trk-badge-offline {
	background: rgba(100, 116, 139, 0.12);
	color: #64748b;
	border: 1px solid rgba(100, 116, 139, 0.2);
}
.trk-break-chk {
	width: 15px;
	height: 15px;
	cursor: pointer;
	accent-color: #f59e0b;
	vertical-align: middle;
}
.trk-break-timer {
	font-size: 10px;
	font-weight: 700;
	color: #fcd34d;
	margin-left: 5px;
}
.trk-actions {
	display: flex;
	gap: 4px;
	align-items: center;
}
.trk-act-btn {
	width: 28px;
	height: 28px;
	border-radius: 6px;
	border: 1px solid rgba(132, 200, 255, 0.18);
	background: rgba(255, 255, 255, 0.06);
	color: #84a1bc;
	font-size: 13px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: all 0.15s;
	font-family: inherit;
}
.trk-act-btn:hover:not(:disabled) {
	transform: scale(1.1);
}
.trk-act-btn:disabled {
	opacity: 0.3;
	cursor: not-allowed;
}
.trk-msg-btn:hover:not(:disabled) {
	background: rgba(17, 123, 255, 0.2);
	border-color: rgba(66, 200, 255, 0.4);
	color: #42c8ff;
}
.trk-buzz-btn:hover:not(:disabled) {
	background: rgba(245, 158, 11, 0.2);
	border-color: rgba(245, 158, 11, 0.4);
	color: #fcd34d;
}
.trk-reassign-btn:hover:not(:disabled) {
	background: rgba(139, 92, 246, 0.2);
	border-color: rgba(139, 92, 246, 0.4);
	color: #c4b5fd;
}
.trk-end-btn:hover:not(:disabled) {
	background: rgba(239, 68, 68, 0.2);
	border-color: rgba(239, 68, 68, 0.4);
	color: #fca5a5;
}

/* ── Account list rows ─────────────────────────────────────── */
.acc-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 4px;
}
.acc-row {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(12, 24, 41, 0.76);
	border: 1px solid rgba(132, 200, 255, 0.14);
	border-radius: 13px;
	padding: 12px 14px;
	backdrop-filter: blur(18px);
}
.acc-info {
	flex: 1;
	min-width: 0;
}
.acc-name {
	font-size: 14px;
	font-weight: 700;
	color: #f8fbff;
}
.acc-empid {
	font-size: 11px;
	color: #84a1bc;
	margin-top: 2px;
	font-family: monospace;
	letter-spacing: 0.04em;
}
.acc-del-btn {
	background: rgba(239, 68, 68, 0.12);
	color: #fca5a5;
	border: 1px solid rgba(239, 68, 68, 0.28);
	border-radius: 9px;
	padding: 6px 11px;
	font-size: 13px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.18s;
	flex-shrink: 0;
}
.acc-del-btn:hover {
	background: rgba(239, 68, 68, 0.28);
	border-color: rgba(239, 68, 68, 0.6);
}
.acc-force-logout-btn {
	background: rgba(245, 158, 11, 0.12);
	color: #fcd34d;
	border: 1px solid rgba(245, 158, 11, 0.28);
	border-radius: 9px;
	padding: 6px 10px;
	font-size: 12px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.18s;
	flex-shrink: 0;
}
.acc-force-logout-btn:hover {
	background: rgba(245, 158, 11, 0.28);
	border-color: rgba(245, 158, 11, 0.6);
}

/* ── Request age urgency ───────────────────────────────────── */
.req-card.age-warn {
	border-color: rgba(245, 158, 11, 0.55);
	background: linear-gradient(
		160deg,
		rgba(16, 32, 56, 0.88),
		rgba(20, 15, 5, 0.92)
	);
	box-shadow:
		0 1px 0 rgba(132, 200, 255, 0.12) inset,
		0 0 0 1px rgba(245, 158, 11, 0.22),
		0 16px 44px rgba(0, 0, 0, 0.36),
		0 4px 12px rgba(0, 0, 0, 0.22);
}
.req-card.age-warn .req-stripe {
	background: linear-gradient(180deg, #f59e0b, #d97706) !important;
}
.req-card.age-urgent {
	border-color: rgba(239, 68, 68, 0.65);
	background: linear-gradient(
		160deg,
		rgba(20, 10, 10, 0.92),
		rgba(12, 5, 5, 0.95)
	);
	box-shadow:
		0 1px 0 rgba(132, 200, 255, 0.12) inset,
		0 0 0 1px rgba(239, 68, 68, 0.28),
		0 16px 44px rgba(0, 0, 0, 0.36),
		0 4px 12px rgba(0, 0, 0, 0.22);
	animation: sla-pulse 1.6s ease-in-out infinite;
}
.req-card.age-urgent .req-stripe {
	background: linear-gradient(180deg, #ef4444, #dc2626) !important;
}
.req-card.age-urgent .req-id {
	color: #fca5a5;
}
.req-card.age-critical {
	border-color: rgba(220, 38, 38, 0.9);
	background: linear-gradient(
		160deg,
		rgba(30, 5, 5, 0.97),
		rgba(15, 3, 3, 0.99)
	);
	box-shadow:
		0 0 0 2px rgba(220, 38, 38, 0.55),
		0 16px 44px rgba(220, 38, 38, 0.22),
		0 4px 12px rgba(0, 0, 0, 0.28);
	animation: sla-critical-pulse 1s ease-in-out infinite;
}
.req-card.age-critical .req-stripe {
	background: linear-gradient(180deg, #dc2626, #991b1b) !important;
}
.req-card.age-critical .req-id {
	color: #fca5a5;
}
.sla-badge.age-critical {
	background: rgba(220, 38, 38, 0.25);
	color: #fca5a5;
	border-color: rgba(220, 38, 38, 0.6);
	font-weight: 800;
}
@keyframes sla-critical-pulse {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: 0.78;
	}
}
@keyframes sla-pulse {
	0%,
	100% {
		box-shadow:
			0 1px 0 rgba(132, 200, 255, 0.12) inset,
			0 0 0 1px rgba(239, 68, 68, 0.28),
			0 16px 44px rgba(0, 0, 0, 0.36),
			0 4px 12px rgba(0, 0, 0, 0.22);
	}
	50% {
		box-shadow:
			0 1px 0 rgba(132, 200, 255, 0.12) inset,
			0 0 0 2px rgba(239, 68, 68, 0.65),
			0 16px 44px rgba(239, 68, 68, 0.16),
			0 4px 12px rgba(0, 0, 0, 0.22);
	}
}
.sla-badge {
	font-size: 10px;
	font-weight: 700;
	padding: 3px 7px;
	border-radius: 8px;
	letter-spacing: 0.02em;
	background: rgba(255, 255, 255, 0.1);
	color: rgba(255, 255, 255, 0.6);
	border: 1px solid rgba(255, 255, 255, 0.14);
	margin-left: auto;
	flex-shrink: 0;
}
.sla-badge.age-warn {
	background: rgba(245, 158, 11, 0.18);
	color: #f59e0b;
	border-color: rgba(245, 158, 11, 0.4);
}
.sla-badge.age-urgent {
	background: rgba(239, 68, 68, 0.18);
	color: #fca5a5;
	border-color: rgba(239, 68, 68, 0.4);
}
.sla-alert-banner.sla-critical {
	background: linear-gradient(
		135deg,
		rgba(139, 10, 10, 0.92),
		rgba(80, 5, 5, 0.97)
	);
	border-color: rgba(239, 68, 68, 0.6);
	animation: sla-banner-pulse 2s ease-in-out infinite;
}
@keyframes sla-banner-pulse {
	0%,
	100% {
		box-shadow: 0 4px 20px rgba(239, 68, 68, 0.3);
	}
	50% {
		box-shadow: 0 4px 32px rgba(239, 68, 68, 0.6);
	}
}
.sla-row-crit {
	color: #fca5a5;
	font-weight: 700;
}
.sla-row-warn {
	color: #fcd34d;
}
/* ── Must-ack broadcast ────────────────────────────────────── */
.broadcast-banner.must-ack {
	border-color: rgba(239, 68, 68, 0.5);
	background: linear-gradient(
		135deg,
		rgba(239, 68, 68, 0.14),
		rgba(13, 27, 47, 0.96)
	);
}
.bc-must-ack-label {
	font-size: 10px;
	font-weight: 700;
	color: #fca5a5;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin-bottom: 4px;
}

/* ── Reports page ──────────────────────────────────────────── */
.report-kpi-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	margin: 14px 0;
}
.report-kpi {
	background: rgba(12, 24, 41, 0.82);
	border: 1px solid rgba(132, 200, 255, 0.14);
	border-radius: 13px;
	padding: 13px 8px;
	text-align: center;
}
.report-kpi-num {
	font-size: 22px;
	font-weight: 800;
	color: #42c8ff;
}
.report-kpi-lbl {
	font-size: 10px;
	color: #84a1bc;
	font-weight: 700;
	margin-top: 3px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.fairness-list {
	margin-bottom: 4px;
}
.fairness-row {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 7px 0;
	border-bottom: 1px solid rgba(132, 200, 255, 0.07);
}
.fairness-name {
	font-size: 12px;
	color: #adc3d8;
	width: 130px;
	flex-shrink: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.fairness-bar-wrap {
	flex: 1;
	height: 8px;
	background: rgba(255, 255, 255, 0.07);
	border-radius: 4px;
	overflow: hidden;
}
.fairness-bar-fill {
	height: 100%;
	background: linear-gradient(90deg, #117bff, #42c8ff);
	border-radius: 4px;
	transition: width 0.4s ease;
}
.fairness-count {
	font-size: 13px;
	font-weight: 700;
	color: #f8fbff;
	width: 22px;
	text-align: right;
	flex-shrink: 0;
}
.fairness-warning {
	background: rgba(245, 158, 11, 0.1);
	border: 1px solid rgba(245, 158, 11, 0.3);
	border-radius: 10px;
	padding: 8px 12px;
	font-size: 12px;
	color: #f59e0b;
	margin-bottom: 10px;
}
.report-bar-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 9px;
}
.report-bar-label {
	font-size: 11px;
	color: #adc3d8;
	font-weight: 600;
	width: 110px;
	flex-shrink: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.report-bar-track {
	flex: 1;
	height: 8px;
	background: rgba(132, 200, 255, 0.1);
	border-radius: 99px;
	overflow: hidden;
}
.report-bar-fill {
	height: 100%;
	background: linear-gradient(90deg, #1e6fff, #42c8ff);
	border-radius: 99px;
	transition: width 0.4s ease;
}
.report-bar-fill.green {
	background: linear-gradient(90deg, #059669, #42e8b4);
}
.report-bar-val {
	font-size: 12px;
	font-weight: 700;
	color: #f8fbff;
	width: 24px;
	text-align: right;
	flex-shrink: 0;
}
.report-day-chart {
	display: flex;
	align-items: flex-end;
	gap: 6px;
	height: 100px;
	margin: 10px 0 4px;
	padding: 0 2px;
}
.report-day-col {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
}
.report-day-bar-wrap {
	flex: 1;
	display: flex;
	align-items: flex-end;
	width: 100%;
}
.report-day-bar {
	width: 100%;
	background: linear-gradient(180deg, #42c8ff, #1e6fff);
	border-radius: 5px 5px 2px 2px;
	min-height: 8px;
	transition: height 0.4s ease;
}
.report-day-val {
	font-size: 11px;
	font-weight: 700;
	color: #f8fbff;
}
.report-day-lbl {
	font-size: 10px;
	color: #84a1bc;
	font-weight: 600;
}

/* ── Shift page ────────────────────────────────────────────── */
.shift-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-top: 8px;
}
.shift-row {
	display: flex;
	align-items: center;
	gap: 12px;
	background: rgba(12, 24, 41, 0.76);
	border: 1px solid rgba(132, 200, 255, 0.14);
	border-radius: 13px;
	padding: 12px 14px;
}
.shift-info {
	flex: 1;
}
.shift-name {
	font-size: 14px;
	font-weight: 700;
	color: #f8fbff;
}
.shift-id {
	font-size: 11px;
	color: #84a1bc;
	margin-top: 2px;
	font-family: monospace;
}
.shift-on-duty {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}
.duty-chip {
	background: rgba(66, 232, 180, 0.14);
	border: 1px solid rgba(66, 232, 180, 0.32);
	color: #42e8b4;
	border-radius: 99px;
	padding: 4px 12px;
	font-size: 12px;
	font-weight: 700;
}

/* ── Toast notification ────────────────────────────────────── */
.app-toast {
	position: fixed;
	bottom: 28px;
	left: 50%;
	transform: translateX(-50%);
	background: rgba(18, 38, 62, 0.96);
	color: #42e8b4;
	border: 1px solid rgba(66, 232, 180, 0.38);
	border-radius: 14px;
	padding: 13px 22px;
	font-size: 14px;
	font-weight: 700;
	font-family: "Plus Jakarta Sans", sans-serif;
	box-shadow: 0 8px 36px rgba(0, 0, 0, 0.44);
	z-index: 9999;
	white-space: nowrap;
	animation: toastIn 0.28s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}
@keyframes toastIn {
	from {
		opacity: 0;
		transform: translateX(-50%) translateY(18px);
	}
	to {
		opacity: 1;
		transform: translateX(-50%) translateY(0);
	}
}
/* ── Broadcast form ────────────────────────────────────────── */
.broadcast-form {
	background: rgba(30, 111, 255, 0.07);
	border: 1px solid rgba(66, 200, 255, 0.18);
	border-radius: 16px;
	padding: 16px;
	margin-top: 6px;
}

/* ── Broadcast banner (interpreter screen) ─────────────────── */
.broadcast-banner {
	background: linear-gradient(
		135deg,
		rgba(30, 111, 255, 0.92),
		rgba(14, 60, 160, 0.95)
	);
	border-bottom: 1px solid rgba(66, 200, 255, 0.4);
	padding: 12px 16px;
	cursor: pointer;
	animation: bcSlideIn 0.3s ease both;
}
@keyframes bcSlideIn {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
.broadcast-banner-inner {
	display: flex;
	align-items: center;
	gap: 12px;
}
.broadcast-banner-icon {
	font-size: 22px;
	flex-shrink: 0;
}
.broadcast-banner-body {
	flex: 1;
	min-width: 0;
}
.broadcast-banner-title {
	font-size: 14px;
	font-weight: 800;
	color: #fff;
	margin-bottom: 2px;
}
.broadcast-banner-msg {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.85);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.broadcast-banner-close {
	color: rgba(255, 255, 255, 0.6);
	font-size: 16px;
	flex-shrink: 0;
	padding: 4px;
}

/* ── Broadcast history rows ─────────────────────────────────── */
.bc-hist-row {
	background: rgba(12, 24, 41, 0.6);
	border: 1px solid rgba(132, 200, 255, 0.12);
	border-radius: 10px;
	padding: 10px 12px;
	margin-top: 8px;
}
.bc-hist-title {
	font-size: 13px;
	font-weight: 700;
	color: #f8fbff;
}
.bc-hist-time {
	font-size: 11px;
	color: #84a1bc;
	float: right;
}
.bc-hist-msg {
	font-size: 12px;
	color: #94a3b8;
	margin-top: 4px;
}

/* ── Report date row ──────────────────────────────────────────── */
.rpt-date-row {
	display: flex;
	gap: 10px;
}
.rpt-date-field {
	flex: 1;
}

/* ── Report table ─────────────────────────────────────────────── */
.rpt-table {
	width: 100%;
	border-collapse: collapse;
	margin-top: 14px;
	font-size: 13px;
	border-radius: 12px;
	overflow: hidden;
}
.rpt-table th {
	background: rgba(11, 37, 69, 0.9);
	color: #a8d9ff;
	padding: 10px 12px;
	text-align: left;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}
.rpt-table td {
	padding: 10px 12px;
	border-bottom: 1px solid rgba(132, 200, 255, 0.1);
	color: #f8fbff;
}
.rpt-table tfoot td {
	border-top: 1px solid rgba(132, 200, 255, 0.28);
	border-bottom: none;
	font-weight: 700;
	color: #42c8ff;
	background: rgba(66, 200, 255, 0.06);
}
.rpt-table tbody tr:hover td {
	background: rgba(66, 200, 255, 0.05);
}

/* ── Analytics Dashboard ──────────────────────────────────────── */
.anl-tabs {
	display: flex;
	gap: 5px;
	margin-bottom: 10px;
	overflow-x: auto;
	padding-bottom: 2px;
}
.anl-tab {
	flex-shrink: 0;
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(132, 200, 255, 0.14);
	border-radius: 8px;
	padding: 7px 11px;
	font-size: 11px;
	font-weight: 700;
	color: #84a1bc;
	font-family: inherit;
	cursor: pointer;
	transition: all 0.15s;
}
.anl-tab.active {
	background: rgba(17, 123, 255, 0.2);
	border-color: rgba(66, 200, 255, 0.45);
	color: #42c8ff;
}
.anl-date-row {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
	flex-wrap: wrap;
}
.anl-today-btn {
	background: rgba(17, 123, 255, 0.15);
	border: 1px solid rgba(66, 200, 255, 0.3);
	border-radius: 7px;
	padding: 6px 11px;
	font-size: 11px;
	font-weight: 700;
	color: #42c8ff;
	font-family: inherit;
	cursor: pointer;
}
.anl-date-inp {
	background: rgba(12, 24, 41, 0.7);
	border: 1px solid rgba(132, 200, 255, 0.2);
	border-radius: 7px;
	padding: 6px 9px;
	font-size: 11px;
	color: #f8fbff;
	font-family: inherit;
	flex: 1;
	min-width: 100px;
	color-scheme: dark;
}
.anl-title {
	font-size: 13px;
	font-weight: 800;
	color: #f8fbff;
	margin-bottom: 10px;
	letter-spacing: 0.02em;
}
.anl-empty {
	color: #84a1bc;
	font-size: 13px;
	padding: 20px 0;
	text-align: center;
}
.anl-kpi-row {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 7px;
	margin-bottom: 12px;
}
.anl-kpi {
	background: rgba(12, 24, 41, 0.82);
	border: 1px solid rgba(132, 200, 255, 0.14);
	border-radius: 10px;
	padding: 10px 6px;
	text-align: center;
}
.anl-kpi-num {
	font-size: 18px;
	font-weight: 800;
	color: #42c8ff;
	line-height: 1;
}
.anl-kpi-lbl {
	font-size: 9px;
	color: #84a1bc;
	font-weight: 700;
	margin-top: 3px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.anl-bar-chart {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.anl-bar-row {
	display: flex;
	align-items: center;
	gap: 8px;
}
.anl-bar-lbl {
	width: 72px;
	font-size: 11px;
	color: #94a3b8;
	font-weight: 600;
	flex-shrink: 0;
	text-align: right;
}
.anl-bar-track {
	flex: 1;
	height: 16px;
	background: rgba(255, 255, 255, 0.06);
	border-radius: 8px;
	overflow: hidden;
}
.anl-bar-fill {
	height: 100%;
	border-radius: 8px;
	transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.anl-bar-val {
	width: 28px;
	font-size: 11px;
	font-weight: 700;
	color: #f8fbff;
	text-align: right;
	flex-shrink: 0;
}
.anl-interp-layout {
	display: flex;
	gap: 10px;
	min-height: 200px;
}
.anl-rank-list {
	width: 140px;
	flex-shrink: 0;
	display: flex;
	flex-direction: column;
	gap: 4px;
	overflow-y: auto;
	max-height: 360px;
}
.anl-rank-item {
	display: flex;
	align-items: center;
	gap: 6px;
	background: rgba(12, 24, 41, 0.76);
	border: 1px solid rgba(132, 200, 255, 0.12);
	border-radius: 8px;
	padding: 6px 8px;
	cursor: pointer;
	transition: all 0.15s;
}
.anl-rank-item.selected {
	background: rgba(17, 123, 255, 0.18);
	border-color: rgba(66, 200, 255, 0.4);
}
.anl-rank-item:hover:not(.selected) {
	background: rgba(17, 123, 255, 0.1);
}
.anl-rank-num {
	font-size: 10px;
	font-weight: 800;
	color: #84a1bc;
	width: 14px;
	text-align: center;
	flex-shrink: 0;
}
.anl-rank-info {
	flex: 1;
	min-width: 0;
}
.anl-rank-name {
	font-size: 10px;
	font-weight: 700;
	color: #f8fbff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.anl-rank-sub {
	font-size: 9px;
	color: #84a1bc;
}
.anl-rank-count {
	font-size: 12px;
	font-weight: 800;
	color: #42c8ff;
	flex-shrink: 0;
}
.anl-peak-panel {
	flex: 1;
	min-width: 0;
	background: rgba(12, 24, 41, 0.6);
	border: 1px solid rgba(132, 200, 255, 0.1);
	border-radius: 10px;
	padding: 10px;
}
.anl-cons-legend {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 11px;
	color: #84a1bc;
	margin-bottom: 10px;
}
.anl-cons-dot {
	width: 10px;
	height: 10px;
	border-radius: 3px;
	display: inline-block;
}
.anl-cons-chart {
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.anl-cons-row {
	display: flex;
	align-items: center;
	gap: 8px;
}
.anl-cons-name {
	width: 60px;
	font-size: 10px;
	color: #94a3b8;
	font-weight: 600;
	flex-shrink: 0;
	text-align: right;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
.anl-cons-bars {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.anl-cons-bar-wrap {
	display: flex;
	align-items: center;
	gap: 6px;
}
.anl-cons-bar {
	height: 10px;
	border-radius: 5px;
	min-width: 3px;
	transition: width 0.4s;
}
.anl-cons-bar-val {
	font-size: 9px;
	color: #84a1bc;
	white-space: nowrap;
}

/* ── Push notification log ────────────────────────────────────── */
.notif-log-list {
	display: flex;
	flex-direction: column;
	gap: 7px;
	margin-top: 8px;
}
.notif-log-row {
	background: rgba(12, 24, 41, 0.76);
	border: 1px solid rgba(132, 200, 255, 0.14);
	border-radius: 11px;
	padding: 10px 13px;
}
.push-health-panel {
	margin-top: 18px;
	padding: 13px;
	border-radius: 12px;
	border: 1px solid rgba(132, 200, 255, 0.14);
	background: rgba(12, 24, 41, 0.68);
}
.push-health-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 10px;
}
.push-health-title {
	color: #f8fbff;
	font-size: 14px;
	font-weight: 900;
}
.push-health-sub,
.push-health-meta {
	color: #84a1bc;
	font-size: 11px;
	line-height: 1.35;
}
.push-health-metrics {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 7px;
	margin-bottom: 10px;
}
.push-health-metrics > div {
	padding: 9px 7px;
	border-radius: 9px;
	background: rgba(255, 255, 255, 0.05);
	text-align: center;
}
.push-health-metrics strong {
	display: block;
	color: #f8fbff;
	font-size: 18px;
	line-height: 1;
}
.push-health-metrics span {
	display: block;
	margin-top: 3px;
	color: #84a1bc;
	font-size: 9px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.push-health-list {
	display: flex;
	flex-direction: column;
	gap: 7px;
}
.push-health-row {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	padding: 9px 10px;
	border-radius: 10px;
	border: 1px solid rgba(132, 200, 255, 0.12);
	background: rgba(255, 255, 255, 0.035);
}
.push-health-row.warn {
	border-color: rgba(245, 158, 11, 0.26);
	background: rgba(245, 158, 11, 0.08);
}
.push-health-name {
	color: #e2edf7;
	font-size: 12px;
	font-weight: 900;
}
.push-health-right {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	gap: 3px;
	flex: 0 0 auto;
}
.push-health-pill {
	border-radius: 100px;
	padding: 3px 8px;
	font-size: 10px;
	font-weight: 900;
}
.push-health-pill.good {
	background: rgba(34, 197, 94, 0.14);
	color: #86efac;
}
.push-health-pill.bad {
	background: rgba(239, 68, 68, 0.14);
	color: #fecaca;
}

@media (max-width: 520px) {
	.doctor-quick-replies {
		grid-template-columns: 1fr;
	}
	.notif-health-card,
	.push-health-row,
	.push-health-head {
		align-items: flex-start;
	}
	.push-health-row {
		flex-direction: column;
	}
	.push-health-right {
		align-items: flex-start;
	}
	.push-health-metrics {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* ── Break on break status bar ────────────────────────────────── */
.avail-bar.break-active {
	background: linear-gradient(
		145deg,
		rgba(245, 158, 11, 0.18),
		rgba(245, 158, 11, 0.08)
	);
	border: 1px solid rgba(245, 158, 11, 0.45);
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	box-shadow:
		0 1px 0 rgba(245, 158, 11, 0.18) inset,
		0 6px 24px rgba(245, 158, 11, 0.15),
		0 4px 12px rgba(0, 0, 0, 0.28);
}
.avail-bar.busy-active {
	background: linear-gradient(
		145deg,
		rgba(239, 68, 68, 0.18),
		rgba(239, 68, 68, 0.08)
	);
	border: 1px solid rgba(239, 68, 68, 0.45);
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
	box-shadow:
		0 1px 0 rgba(239, 68, 68, 0.18) inset,
		0 6px 24px rgba(239, 68, 68, 0.15),
		0 4px 12px rgba(0, 0, 0, 0.28);
}
.break-queued-pill {
	background: rgba(245, 158, 11, 0.25);
	border: 1px solid rgba(245, 158, 11, 0.5);
	color: #fcd34d;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 20px;
	white-space: nowrap;
}
.btn-queue-break {
	background: rgba(245, 158, 11, 0.15);
	border: 1px solid rgba(245, 158, 11, 0.35);
	color: #fcd34d;
	font-size: 11px;
	font-weight: 700;
	padding: 6px 12px;
	border-radius: 20px;
	cursor: pointer;
	white-space: nowrap;
}
.break-countdown {
	font-size: 28px;
	font-weight: 800;
	color: #fcd34d;
	letter-spacing: 0.04em;
	line-height: 1.1;
	font-variant-numeric: tabular-nums;
	text-shadow: 0 0 16px rgba(245, 158, 11, 0.5);
}
.btn-return-early {
	background: rgba(66, 200, 255, 0.14);
	color: #42c8ff;
	border: 1px solid rgba(66, 200, 255, 0.35);
	border-radius: 10px;
	padding: 9px 14px;
	font-size: 12px;
	font-weight: 700;
	font-family: inherit;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
	transition: all 0.18s;
}
.btn-return-early:hover {
	background: rgba(66, 200, 255, 0.26);
	border-color: rgba(66, 200, 255, 0.6);
}

/* ── Break picker modal ───────────────────────────────────────── */
.break-picker-sheet {
	padding-bottom: 28px;
}
.break-picker-icon {
	font-size: 40px;
	text-align: center;
	margin-bottom: 10px;
	filter: drop-shadow(0 0 16px rgba(245, 158, 11, 0.6));
}
.break-dur-row {
	display: flex;
	gap: 14px;
	margin-top: 8px;
}
.break-dur-btn {
	flex: 1;
	background: rgba(245, 158, 11, 0.12);
	border: 1px solid rgba(245, 158, 11, 0.38);
	border-radius: 16px;
	padding: 20px 10px;
	cursor: pointer;
	font-family: inherit;
	text-align: center;
	transition: all 0.2s;
	color: #fff;
}
.break-dur-btn:hover {
	background: rgba(245, 158, 11, 0.24);
	border-color: rgba(245, 158, 11, 0.7);
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(245, 158, 11, 0.2);
}
.break-dur-btn:active {
	transform: scale(0.97);
}
.break-dur-disabled {
	opacity: 0.35;
	cursor: not-allowed !important;
	pointer-events: none;
}
.break-dur-mins {
	font-size: 38px;
	font-weight: 800;
	color: #fcd34d;
	line-height: 1;
}
.break-dur-label {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
	font-weight: 700;
	margin-top: 4px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

/* ── Admin break strip ────────────────────────────────────────── */
.break-strip-section {
	background: rgba(245, 158, 11, 0.08);
	border: 1px solid rgba(245, 158, 11, 0.28);
	border-radius: 14px;
	padding: 12px 14px;
	margin-top: 14px;
}
.break-strip-title {
	font-size: 12px;
	font-weight: 700;
	color: #fcd34d;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin-bottom: 10px;
}
.break-strip-cards {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.break-strip-card {
	background: rgba(245, 158, 11, 0.13);
	border: 1px solid rgba(245, 158, 11, 0.32);
	border-radius: 10px;
	padding: 8px 12px;
	min-width: 100px;
	flex: 1;
}
.break-strip-name {
	font-size: 13px;
	font-weight: 700;
	color: #f8fbff;
}
.break-strip-id {
	font-size: 11px;
	color: #84a1bc;
	margin-top: 1px;
}
.break-strip-timer {
	font-size: 20px;
	font-weight: 800;
	color: #fcd34d;
	font-variant-numeric: tabular-nums;
	margin-top: 5px;
	line-height: 1;
}
.break-strip-sub {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 2px;
}

/* ── Doctor card break notice ─────────────────────────────────── */
.interp-on-break {
	font-size: 12px;
	color: #f59e0b;
	font-weight: 700;
	background: rgba(245, 158, 11, 0.1);
	border: 1px solid rgba(245, 158, 11, 0.28);
	border-radius: 9px;
	padding: 7px 11px;
	margin-bottom: 8px;
}

/* ── 3-column stats row ───────────────────────────────────────── */
.stats-row-3 {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

/* ── Interpreter welcome screen ───────────────────────────────── */
.interp-welcome {
	position: relative;
	z-index: 2;
	background: linear-gradient(
		145deg,
		rgba(7, 95, 82, 0.92),
		rgba(5, 17, 31, 0.94)
	);
	border-bottom: 1px solid rgba(66, 232, 180, 0.2);
	padding: 32px 20px 32px;
	color: #fff;
	text-align: center;
	overflow: hidden;
}
.interp-welcome::before {
	content: "";
	position: absolute;
	inset: -40% -20%;
	background:
		radial-gradient(
			circle at 30% 35%,
			rgba(66, 200, 255, 0.22),
			transparent 30%
		),
		radial-gradient(
			circle at 78% 22%,
			rgba(66, 232, 180, 0.16),
			transparent 26%
		);
	animation: slowFloat 8s ease-in-out infinite alternate;
	z-index: -1;
}
.welcome-avatar {
	font-size: 58px;
	margin-bottom: 10px;
	filter: drop-shadow(0 0 22px rgba(66, 232, 180, 0.55));
	animation: logoIntro 0.8s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}
.welcome-greeting {
	font-size: 11px;
	font-weight: 700;
	opacity: 0.6;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin-bottom: 4px;
}
.welcome-name {
	font-size: 26px;
	font-weight: 800;
	margin-bottom: 4px;
	letter-spacing: -0.01em;
}
.welcome-empid {
	display: inline-block;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.2);
	border-radius: 99px;
	padding: 3px 13px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.04em;
	opacity: 0.75;
	margin-bottom: 18px;
}
.welcome-recent-list {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 4px;
}
.welcome-recent-row {
	display: flex;
	align-items: center;
	background: rgba(12, 24, 41, 0.72);
	border: 1px solid rgba(132, 200, 255, 0.14);
	border-radius: 13px;
	padding: 12px 14px;
	gap: 10px;
	backdrop-filter: blur(18px);
}

/* ── Interpreter standby card ─────────────────────────────────── */
.standby-card {
	background: linear-gradient(
		145deg,
		rgba(52, 211, 153, 0.08),
		rgba(6, 182, 212, 0.06)
	);
	border: 1px solid rgba(52, 211, 153, 0.22);
	border-radius: 16px;
	padding: 28px 20px;
	text-align: center;
	margin-top: 8px;
	position: relative;
	overflow: hidden;
}
.standby-pulse {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: rgba(52, 211, 153, 0.2);
	border: 2px solid rgba(52, 211, 153, 0.5);
	margin: 0 auto 14px;
	animation: standbyPulse 2s ease-in-out infinite;
}
@keyframes standbyPulse {
	0%,
	100% {
		transform: scale(1);
		opacity: 1;
	}
	50% {
		transform: scale(1.18);
		opacity: 0.6;
	}
}
.standby-title {
	font-size: 16px;
	font-weight: 800;
	color: #34d399;
	margin-bottom: 6px;
}
.standby-sub {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.5);
	line-height: 1.5;
}
/* ── Session log rows ─────────────────────────────────────────── */
.session-row {
	background: linear-gradient(
		160deg,
		rgba(16, 32, 56, 0.88),
		rgba(8, 18, 34, 0.92)
	);
	border: 1px solid rgba(132, 200, 255, 0.16);
	border-radius: 13px;
	padding: 11px 14px;
	margin-bottom: 8px;
	box-shadow:
		0 1px 0 rgba(132, 200, 255, 0.1) inset,
		0 4px 14px rgba(0, 0, 0, 0.28);
}
.session-row-top {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 5px;
}
.session-name {
	font-size: 14px;
	font-weight: 700;
	color: #f8fbff;
}
.session-empid {
	font-size: 11px;
	color: #84a1bc;
	font-weight: 600;
}
.session-active-badge {
	margin-left: auto;
	font-size: 10px;
	font-weight: 700;
	color: #34d399;
	background: rgba(52, 211, 153, 0.14);
	border: 1px solid rgba(52, 211, 153, 0.36);
	border-radius: 8px;
	padding: 2px 8px;
	animation: sla-pulse 2s ease-in-out infinite;
}
.session-times {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.session-time-item {
	font-size: 11px;
	color: rgba(255, 255, 255, 0.55);
}
.session-time-item strong {
	color: rgba(255, 255, 255, 0.85);
	font-weight: 700;
}
/* ── Broadcast ack button ─────────────────────────────────────── */
.bc-ack-btn {
	background: #0e7490;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 7px 13px;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	flex-shrink: 0;
	margin-left: 8px;
}
.bc-ack-btn:hover {
	background: #0b6070;
}
.bc-ack-summary {
	font-size: 11px;
	margin-top: 6px;
	padding: 4px 8px;
	border-radius: 6px;
	font-weight: 600;
}
.bc-ack-has {
	color: #42e8b4;
	background: rgba(66, 232, 180, 0.08);
}
.bc-ack-none {
	color: #84a1bc;
	background: rgba(132, 161, 188, 0.08);
}
.bc-hist-row {
	background: rgba(12, 24, 41, 0.6);
	border: 1px solid rgba(132, 161, 188, 0.15);
	border-radius: 12px;
	padding: 12px 14px;
	margin-bottom: 8px;
}
.bc-hist-title {
	font-size: 13px;
	font-weight: 700;
	color: #f8fbff;
}
.bc-hist-time {
	font-size: 11px;
	color: #84a1bc;
}
.bc-hist-msg {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.55);
	margin-top: 4px;
}

/* ── Leave calendar ───────────────────────────────────────────── */
.cal-grid-wrap {
	overflow-x: auto;
	margin-top: 10px;
}
.cal-grid {
	display: grid;
	grid-template-columns: repeat(7, 1fr);
	gap: 3px;
	min-width: 280px;
}
.cal-hdr {
	text-align: center;
	font-size: 10px;
	font-weight: 700;
	color: #84a1bc;
	padding: 4px 0;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.cal-cell {
	min-height: 44px;
	background: rgba(12, 24, 41, 0.5);
	border: 1px solid rgba(132, 161, 188, 0.1);
	border-radius: 6px;
	padding: 4px;
	position: relative;
}
.cal-day {
	font-size: 11px;
	font-weight: 600;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1;
}
.cal-today {
	border-color: #0e7490;
	background: rgba(14, 116, 144, 0.15);
}
.cal-today .cal-day {
	color: #22d3ee;
	font-weight: 800;
}
.cal-has-leave {
	background: rgba(245, 158, 11, 0.12);
	border-color: rgba(245, 158, 11, 0.3);
}
.cal-off-names {
	font-size: 9px;
	color: #fcd34d;
	margin-top: 2px;
	line-height: 1.2;
	overflow: hidden;
	max-height: 28px;
}
/* ── Leave cards ──────────────────────────────────────────────── */
.leave-card {
	background: rgba(12, 24, 41, 0.6);
	border: 1px solid rgba(132, 161, 188, 0.15);
	border-radius: 14px;
	padding: 14px;
	margin-bottom: 10px;
}
.leave-card.leave-approved {
	border-color: rgba(66, 232, 180, 0.3);
}
.leave-card.leave-rejected {
	border-color: rgba(239, 68, 68, 0.25);
}
.leave-card.leave-pending {
	border-color: rgba(245, 158, 11, 0.3);
}
.leave-card-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 10px;
}
.leave-name {
	font-size: 14px;
	font-weight: 700;
	color: #f8fbff;
	margin-bottom: 4px;
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.leave-dates {
	font-size: 12px;
	color: #84a1bc;
	margin-top: 3px;
}
.leave-reason {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.45);
	margin-top: 4px;
	font-style: italic;
}
.leave-age {
	font-size: 11px;
	color: #64748b;
	white-space: nowrap;
	margin-top: 2px;
}
.leave-actions {
	display: flex;
	gap: 8px;
	margin-top: 12px;
}
.leave-type-badge {
	font-size: 10px;
	font-weight: 700;
	padding: 2px 9px;
	border-radius: 99px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}
.leave-type-badge.annual {
	background: rgba(14, 116, 144, 0.25);
	color: #22d3ee;
	border: 1px solid rgba(34, 211, 238, 0.3);
}
.leave-type-badge.sick {
	background: rgba(245, 158, 11, 0.15);
	color: #fcd34d;
	border: 1px solid rgba(252, 211, 77, 0.3);
}
.leave-status-badge {
	font-size: 11px;
	font-weight: 700;
	padding: 4px 10px;
	border-radius: 99px;
	white-space: nowrap;
	flex-shrink: 0;
}
.leave-status-badge.leave-approved {
	background: rgba(66, 232, 180, 0.12);
	color: #42e8b4;
	border: 1px solid rgba(66, 232, 180, 0.3);
}
.leave-status-badge.leave-rejected {
	background: rgba(239, 68, 68, 0.1);
	color: #f87171;
	border: 1px solid rgba(239, 68, 68, 0.25);
}
.leave-status-badge.leave-pending {
	background: rgba(245, 158, 11, 0.12);
	color: #fcd34d;
	border: 1px solid rgba(245, 158, 11, 0.3);
}
/* ── Leave form ───────────────────────────────────────────────── */
.leave-form-card {
	background: rgba(12, 24, 41, 0.7);
	border: 1px solid rgba(132, 161, 188, 0.18);
	border-radius: 16px;
	padding: 16px;
	margin-bottom: 16px;
}
.leave-type-row {
	display: flex;
	gap: 10px;
	margin-top: 6px;
}
.leave-type-btn {
	flex: 1;
	padding: 10px;
	border-radius: 10px;
	border: 1px solid rgba(132, 161, 188, 0.2);
	background: rgba(12, 24, 41, 0.5);
	color: rgba(255, 255, 255, 0.5);
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
	transition: all 0.15s;
}
.leave-type-btn.selected {
	background: rgba(14, 116, 144, 0.25);
	border-color: #0e7490;
	color: #22d3ee;
}
/* ── QR code section ─────────────────────────────────────────── */
.qr-section {
	background: rgba(12, 24, 41, 0.6);
	border: 1px solid rgba(132, 161, 188, 0.15);
	border-radius: 16px;
	padding: 16px;
}
/* ── Admin 6-tab bottom nav smaller font ─────────────────────── */
.admin-btab {
	font-size: 10px;
}
.admin-btab span {
	font-size: 16px;
}
/* ── SLA alert banner ─────────────────────────────────────────── */
.sla-alert-banner {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	background: rgba(239, 68, 68, 0.15);
	border: 1px solid rgba(239, 68, 68, 0.4);
	border-radius: 12px;
	padding: 12px 16px;
	margin: 12px 16px 0;
	position: fixed;
	top: 12px;
	left: 50%;
	transform: translateX(-50%);
	width: calc(100% - 32px);
	max-width: 520px;
	z-index: 9999;
}
.sla-alert-icon {
	font-size: 20px;
	flex-shrink: 0;
	margin-top: 1px;
}
.sla-alert-body {
	flex: 1;
}
.sla-alert-title {
	font-size: 13px;
	font-weight: 800;
	color: #fca5a5;
	margin-bottom: 4px;
}
.sla-alert-row {
	font-size: 12px;
	color: #fda4af;
	margin-top: 2px;
}
/* ── SLA inline block (requests page) ────────────────────────── */
.sla-inline-block {
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 16px;
	border: 1px solid rgba(239, 68, 68, 0.35);
	background: linear-gradient(
		160deg,
		rgba(20, 8, 8, 0.85),
		rgba(12, 5, 5, 0.92)
	);
}
.sla-inline-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 14px;
	font-size: 13px;
	font-weight: 800;
	color: #fca5a5;
	border-bottom: 1px solid rgba(239, 68, 68, 0.2);
}
.sla-inline-count {
	font-size: 11px;
	font-weight: 700;
	background: rgba(239, 68, 68, 0.22);
	color: #fca5a5;
	border: 1px solid rgba(239, 68, 68, 0.4);
	border-radius: 999px;
	padding: 2px 9px;
}
.sla-section-header {
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	padding: 8px 14px 4px;
}
.sla-header-crit {
	color: #ef4444;
}
.sla-header-warn {
	color: #f59e0b;
}
.sla-inline-block .req-card {
	margin: 0 10px 8px;
	border-radius: 10px;
}
.sla-inline-block .req-card:last-child {
	margin-bottom: 10px;
}
/* ── Delay report tab ────────────────────────────────────────── */
.delay-filter-row {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 14px;
}
.delay-interp-sel {
	flex: 1;
	min-width: 160px;
	padding: 9px 12px;
	font-size: 13px;
	height: auto;
}
.delay-filter-stats {
	display: flex;
	gap: 12px;
	font-size: 12px;
	color: #84a1bc;
	flex-wrap: wrap;
}
.delay-section-label {
	font-size: 11px;
	font-weight: 800;
	color: #84a1bc;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin-bottom: 8px;
}
.delay-summary-table {
	border-radius: 12px;
	overflow: hidden;
	border: 1px solid rgba(132, 200, 255, 0.14);
	margin-bottom: 18px;
}
.delay-sum-head {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.4fr 1fr 1fr;
	gap: 0;
	background: rgba(11, 37, 69, 0.9);
	padding: 10px 14px;
	font-size: 11px;
	font-weight: 800;
	color: #84a1bc;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}
.delay-sum-row {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1.4fr 1fr 1fr;
	gap: 0;
	padding: 10px 14px;
	font-size: 13px;
	color: #c8d9eb;
	border-top: 1px solid rgba(30, 58, 95, 0.5);
	transition: background 0.15s;
}
.delay-sum-row:hover {
	background: rgba(14, 37, 68, 0.5);
}
.delay-sum-row.has-delay {
	background: rgba(239, 68, 68, 0.06);
}
.delay-sum-name {
	font-weight: 700;
	color: #f8fbff;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.delay-detail-title {
	font-size: 11px;
	font-weight: 800;
	color: #84a1bc;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	margin: 4px 0 8px;
}
.delay-detail-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
	min-width: 600px;
}
.delay-detail-table th {
	background: rgba(11, 37, 69, 0.9);
	color: #84a1bc;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 9px 10px;
	text-align: left;
	white-space: nowrap;
}
.delay-detail-table td {
	padding: 8px 10px;
	color: #c8d9eb;
	border-bottom: 1px solid rgba(30, 58, 95, 0.4);
	vertical-align: middle;
}
.delay-detail-table tr:hover td {
	background: rgba(14, 37, 68, 0.5);
}
.delay-row-crit td {
	background: rgba(239, 68, 68, 0.05);
}
.delay-badge-crit {
	font-size: 11px;
	font-weight: 700;
	color: #fca5a5;
	white-space: nowrap;
}
.delay-badge-ok {
	font-size: 11px;
	font-weight: 600;
	color: #6ee7b7;
	white-space: nowrap;
}
/* ── Activity log table ───────────────────────────────────────── */
.act-row {
	border-bottom: 1px solid rgba(30, 58, 95, 0.6);
	transition: background 0.15s;
}
.act-row:last-child {
	border-bottom: none;
}
.act-row:hover {
	background: rgba(14, 37, 68, 0.5);
}
.act-time,
.act-name,
.act-event,
.act-detail {
	padding: 9px 12px;
	vertical-align: middle;
}
.act-badge {
	display: inline-block;
	padding: 3px 9px;
	border-radius: 99px;
	font-size: 11px;
	font-weight: 700;
	white-space: nowrap;
}
.act-login {
	background: rgba(66, 232, 180, 0.12);
	color: #42e8b4;
	border: 1px solid rgba(66, 232, 180, 0.3);
}
.act-logout {
	background: rgba(239, 68, 68, 0.1);
	color: #f87171;
	border: 1px solid rgba(239, 68, 68, 0.25);
}
.act-break_start {
	background: rgba(245, 158, 11, 0.12);
	color: #fcd34d;
	border: 1px solid rgba(245, 158, 11, 0.3);
}
.act-break_end {
	background: rgba(66, 232, 180, 0.1);
	color: #6ee7b7;
	border: 1px solid rgba(66, 232, 180, 0.2);
}
.act-task_assigned {
	background: rgba(66, 153, 225, 0.12);
	color: #63b3ed;
	border: 1px solid rgba(66, 153, 225, 0.3);
}
.act-task_onway {
	background: rgba(139, 92, 246, 0.12);
	color: #c4b5fd;
	border: 1px solid rgba(139, 92, 246, 0.3);
}
.act-task_arrived {
	background: rgba(16, 185, 129, 0.12);
	color: #34d399;
	border: 1px solid rgba(16, 185, 129, 0.3);
}
.act-task_completed {
	background: rgba(66, 232, 180, 0.15);
	color: #42e8b4;
	border: 1px solid rgba(66, 232, 180, 0.4);
}
.act-task_cancelled {
	background: rgba(156, 163, 175, 0.1);
	color: #9ca3af;
	border: 1px solid rgba(156, 163, 175, 0.2);
}
/* ── Compact request table ────────────────────────────────────── */
.rq-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 12px;
}
.rq-table thead tr {
	background: #0b2545;
	color: #84a1bc;
}
.rq-table th {
	padding: 8px 10px;
	font-weight: 600;
	text-align: left;
	white-space: nowrap;
	font-size: 11px;
}
.rq-row {
	border-bottom: 1px solid rgba(30, 58, 95, 0.5);
	transition: background 0.15s;
}
.rq-row:last-child {
	border-bottom: none;
}
.rq-row:hover {
	background: rgba(14, 37, 68, 0.5);
}
.rq-row td {
	padding: 7px 10px;
	vertical-align: middle;
}
.rq-urgent {
	background: rgba(239, 68, 68, 0.06);
}
.rq-id {
	font-weight: 700;
	color: #f8fbff;
	white-space: nowrap;
	min-width: 52px;
}
.rq-dept {
	color: #cbd5e1;
	max-width: 120px;
}
.rq-sub {
	font-size: 10px;
	color: #4a6fa5;
	display: block;
	margin-top: 1px;
}
.rq-btn-assign {
	background: #0e7490;
	color: #fff;
	border: none;
	border-radius: 7px;
	padding: 5px 9px;
	font-size: 11px;
	font-weight: 700;
	cursor: pointer;
	margin-right: 4px;
}
.rq-btn-cancel {
	background: transparent;
	color: #f87171;
	border: 1px solid rgba(239, 68, 68, 0.4);
	border-radius: 7px;
	padding: 5px 8px;
	font-size: 11px;
	cursor: pointer;
}
.rq-btn-reassign {
	background: rgba(99, 179, 237, 0.12);
	color: #63b3ed;
	border: 1px solid rgba(99, 179, 237, 0.3);
	border-radius: 7px;
	padding: 5px 9px;
	font-size: 11px;
	cursor: pointer;
}
/* ── Report generator box ─────────────────────────────────────── */
.req-report-box {
	background: rgba(11, 37, 69, 0.6);
	border: 1px solid rgba(132, 161, 188, 0.2);
	border-radius: 12px;
	padding: 12px 14px;
	margin-bottom: 14px;
}
.req-report-title {
	font-size: 13px;
	font-weight: 700;
	color: #cbd5e1;
	margin-bottom: 10px;
}
.req-report-row {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
}
.req-today-btn {
	background: #0e7490;
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 7px 13px;
	font-size: 12px;
	font-weight: 700;
	cursor: pointer;
	white-space: nowrap;
	font-family: inherit;
}
.req-date-inp {
	flex: 1;
	min-width: 110px;
	padding: 7px 10px;
	font-size: 12px;
}

/* ── Organisation gate ───────────────────────────────────────────── */
.org-gate-wrap {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
	padding: 24px 20px;
	position: relative;
	z-index: 2;
}
.org-gate-card {
	width: 100%;
	max-width: 360px;
	background: rgba(7, 18, 35, 0.88);
	border: 1px solid rgba(14, 165, 233, 0.25);
	border-radius: 20px;
	box-shadow:
		0 32px 80px rgba(0, 0, 0, 0.5),
		0 0 60px rgba(14, 165, 233, 0.08),
		inset 0 1px 0 rgba(255, 255, 255, 0.06);
	padding: 28px 24px 24px;
	backdrop-filter: blur(28px);
}
.org-brand {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}
.org-brand-icon {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 12px;
	position: relative;
	overflow: hidden;
	background: linear-gradient(145deg, rgba(70, 201, 255, 0.95), rgba(13, 67, 152, 0.9));
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 0 24px rgba(14, 165, 233, 0.35);
}
.org-brand-icon::before {
	content: "";
	position: absolute;
	inset: 7px;
	background: center / contain no-repeat url(/assets/logos/logo-white.png);
	filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.45));
}
.org-brand-icon svg {
	display: none;
}
.org-brand-title {
	font-size: 18px;
	font-weight: 800;
	color: #f8fbff;
	line-height: 1;
}
.org-brand-title span {
	color: var(--teal, #14b8a6);
	text-shadow: 0 0 18px rgba(20, 184, 166, 0.7);
}
.org-brand-sub {
	font-size: 10px;
	color: rgba(248, 251, 255, 0.4);
	font-weight: 600;
	letter-spacing: 0.05em;
	margin-top: 3px;
}
.org-divider {
	height: 1px;
	background: linear-gradient(
		90deg,
		transparent,
		rgba(14, 165, 233, 0.3),
		transparent
	);
	margin-bottom: 22px;
}
.org-body {
	text-align: center;
}
.org-headline {
	font-size: 22px;
	font-weight: 800;
	color: #f8fbff;
	letter-spacing: -0.01em;
}
.org-sub {
	font-size: 13px;
	color: rgba(248, 251, 255, 0.42);
	margin-top: 6px;
	line-height: 1.5;
}
.org-code-input {
	text-transform: uppercase !important;
	letter-spacing: 0.12em !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	text-align: center !important;
	padding: 16px !important;
}
.org-continue-btn {
	width: 100%;
	font-size: 15px;
	padding: 15px;
	letter-spacing: 0.02em;
}
.org-error {
	background: rgba(239, 68, 68, 0.1);
	border: 1px solid rgba(239, 68, 68, 0.3);
	border-radius: 10px;
	color: #fca5a5;
	font-size: 12px;
	font-weight: 600;
	padding: 10px 14px;
	margin-top: 12px;
	text-align: center;
}
.org-footer {
	text-align: center;
	font-size: 12px;
	color: rgba(248, 251, 255, 0.3);
	margin-top: 20px;
}
.org-gate-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 20px;
	font-size: 11px;
	color: rgba(248, 251, 255, 0.28);
}
.org-meta-item {
	font-weight: 600;
	letter-spacing: 0.02em;
}
.org-meta-dot {
	color: rgba(248, 251, 255, 0.18);
}
/* teal variable for org gate (app uses --blue by default) */
:root {
	--teal: #14b8a6;
}

/* ── Module hub ──────────────────────────────────────────────────── */
.mod-hub {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.mod-card {
	display: flex;
	align-items: center;
	gap: 14px;
	background: var(--mc-dim);
	border: 1px solid var(--mc-border);
	border-radius: 16px;
	padding: 18px 20px;
	cursor: pointer;
	transition: all 0.2s ease;
	position: relative;
	overflow: hidden;
}
.mod-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, var(--mc-dim), transparent);
	opacity: 0;
	transition: opacity 0.2s;
}
.mod-card:hover {
	transform: translateY(-2px);
	box-shadow:
		0 8px 32px rgba(0, 0, 0, 0.3),
		0 0 0 1px var(--mc-border);
	border-color: var(--mc);
}
.mod-card:hover::before {
	opacity: 1;
}
.mod-icon {
	font-size: 28px;
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--mc-dim);
	border: 1px solid var(--mc-border);
	border-radius: 12px;
}
.mod-label {
	flex: 1;
	font-size: 15px;
	font-weight: 700;
	color: #f8fbff;
}
.mod-arrow {
	font-size: 13px;
	font-weight: 700;
	color: var(--mc);
	opacity: 0.8;
	flex-shrink: 0;
}
