::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar:horizontal { height: 3px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-track:horizontal { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: #bdbdbd; border-left: 1.5px solid transparent; border-right: 1.5px solid transparent; }
::-webkit-scrollbar-thumb:horizontal { background: #bdbdbd; border-top: 1.5px solid transparent; border-bottom: 1.5px solid transparent; }
::-webkit-scrollbar-thumb:hover { background: #9e9e9e; border-left: 1.5px solid #bdbdbd; border-right: 1.5px solid #bdbdbd; }
::-webkit-scrollbar-thumb:horizontal:hover { background: #9e9e9e; border-top: 1.5px solid #bdbdbd; border-bottom: 1.5px solid #bdbdbd; }

body {
 margin: 0;
 padding: 0;
 overflow: hidden;
 display: block;
 position: relative;
}
:root {
	--bg-top: #f1ede7;
	--bg-bottom: #dbe5ea;
	--panel-start: #0b5f4f;
	--panel-end: #103f52;
	--soft-text: #6e7b84;
	--brand: #148a67;
}
body {
	min-height: 100vh;
	background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-top) 64%, var(--bg-bottom) 100%);
	font-family: "Segoe UI", "Noto Sans", sans-serif;
}
.login-shell {
	min-height: 100vh;
}
.showcase-panel {
	background: linear-gradient(135deg, var(--panel-start) 0%, var(--panel-end) 100%);
	border-radius: 1.15rem;
	color: #ffffff;
	padding: 2rem;
	min-height: 320px;
	box-shadow: 0 12px 34px rgba(8, 52, 60, 0.25);
}
.product-tag {
	display: inline-block;
	padding: 0.75rem 1.25rem;
	border-radius: 999px;
	background-color: rgba(255, 255, 255, 0.14);
	font-size: 0.95rem;
}
.showcase-title {
	font-size: clamp(1.7rem, 2.8vw, 2.7rem);
	font-weight: 700;
	line-height: 1.2;
}
.showcase-copy {
	color: rgba(255, 255, 255, 0.8);
	font-size: 1rem;
	max-width: 32ch;
}
.login-card {
	background-color: #f9fafb;
	border-radius: 1.15rem;
	padding: 2rem;
	min-height: 320px;
	box-shadow: 0 10px 30px rgba(80, 93, 104, 0.12);
}
.form-control {
	height: 2.6rem;
	border-radius: 0.75rem;
}
.btn-brand {
	background-color: var(--brand);
	border-color: var(--brand);
	border-radius: 999px;
	padding-inline: 1.25rem;
}
.btn-brand:hover,
.btn-brand:focus {
	background-color: #12785a;
	border-color: #12785a;
}
.text-soft {
	color: var(--soft-text);
}
@media (max-width: 991.98px) {
	.showcase-panel,
	.login-card {
		min-height: auto;
	}
	.showcase-copy {
		max-width: 100%;
	}
}

/* Main dashboard page */
body.crm-main {
	min-height: 100vh;
	background: linear-gradient(90deg, #f3efe9 0%, #eef3f5 28%, #dbe5ea 100%);
	font-family: "Segoe UI", "Noto Sans", sans-serif;
	overflow: auto;
}

.crm-layout {
	min-height: 100vh;
}

.crm-sidebar {
	width: 252px;
	padding: 1.2rem 1.1rem;
	background: linear-gradient(180deg, #08493f 0%, #0b6151 58%, #0b3f4b 100%);
	color: #d7ebe5;
}

.sidebar-head {
	padding: 0.4rem 0.2rem;
}

.brand-icon {
	width: 44px;
	height: auto;
	object-fit: contain;
}

.brand-title {
	font-size: 1.95rem;
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: 0.01em;
	color: #ecf8f6;
}

.brand-subtitle {
	font-size: 13px;
	color: #cbe0db;
}

.sidebar-separator {
	border-color: rgba(222, 239, 236, 0.16);
	margin: 1.05rem 0 1.35rem;
}
.sidebar-separator.short {
	border-color: #b6d0cb;
	margin: 0.75rem 0;
}
.office-card {
	background-color: rgba(131, 191, 168, 0.21);
	border-radius: 0.95rem;
	padding: 0.75rem 0.85rem;
}

.office-name {
	font-weight: 700;
	font-size: 18px;
	color: #e9f6f2;
}

.office-id {
	font-size: 13px;
	color: #cee6df;
}

.sidebar-menu {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
}

.menu-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-radius: 0.8rem;
	padding: 0.6rem 0.75rem;
	color: #d5e7e1;
	text-decoration: none;
	transition: all 0.2s ease;
}

.menu-item:hover {
	background-color: rgba(212, 236, 229, 0.14);
	color: #f4fffc;
}

.menu-item span {
	font-size: 16px;
}

.menu-item.has-submenu::after {
	content: "+";
	font-size: 16px;
	line-height: 1;
	color: #b8d9d0;
}

.menu-item.has-submenu.is-open::after {
	content: "-";
	color: #ecfbf8;
}

.menu-item small {
	font-size: 16px;
	color: #aed0c7;
}

.menu-item.is-active {
	background-color: rgba(207, 231, 223, 0.2);
}

.menu-item.is-active small {
	color: #d8efe8;
}

.submenu-list {
	margin-top: -0.1rem;
	margin-bottom: 0.2rem;
	padding-left: 1.25rem;
	display: none;
	flex-direction: column;
	gap: 0.15rem;
}

.submenu-list.is-open {
	display: flex;
}

.submenu-item {
	border-radius: 0.5rem;
	padding: 0.34rem 0.5rem;
	color: #b8d9d0;
	text-decoration: none;
	font-size: 16px;
	line-height: 1.2;
	transition: all 0.2s ease;
}

.submenu-item:hover {
	background-color: rgba(212, 236, 229, 0.12);
	color: #ecfbf8;
}

.submenu-item.is-active {
	background-color: rgba(207, 231, 223, 0.2);
	color: #ecfbf8;
}

.submenu-list hr {
	margin: 0.2rem 0;
	border: 0;
	border-top: 1px solid rgba(212, 236, 229, 0.2);
}

.crm-content {
	padding: 1.35rem 1.55rem;
}

.content-wrap {
	max-width: 1500px;
	margin-inline: auto;
}

.dashboard-title {
	font-weight: 700;
	font-size: 18px;
	color: #1e2b30;
}

.dashboard-subtitle {
	font-size: 13px;
	color: #5e7380;
}

.btn-prospek,
.btn-wa {
	border-radius: 999px;
	padding-inline: 1.1rem;
	padding-block: 0.42rem;
	font-size: 13px;
	border: none;
}

.btn-prospek {
	background-color: #148a67;
	color: #e8f8f2;
}

.btn-prospek:hover {
	background-color: #0f7758;
	color: #effcf8;
}

.btn-wa {
	background-color: #ebeded;
	color: #263238;
}

.btn-wa:hover {
	background-color: #dde4e7;
}

.metric-card {
	background-color: #f8fafb;
	border-radius: 1rem;
	padding: 0.95rem 1rem 0.85rem;
	box-shadow: 0 10px 22px rgba(104, 122, 136, 0.14);
}

.metric-label {
	font-size: 13px;
	color: #627783;
}

.metric-value {
	font-size: 2.3rem;
	font-weight: 700;
	line-height: 1;
	color: #233238;
}

.flow-title {
	font-size: 18px;
	font-weight: 700;
	color: #1f2d33;
}

.flow-card {
	background-color: #f8fafb;
	border-radius: 1rem;
	padding: 0.95rem 1.05rem;
	box-shadow: 0 8px 18px rgba(111, 128, 139, 0.14);
}

.flow-card-title {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0.6rem;
	color: #243338;
}

.flow-card-copy {
	font-size: 13px;
	line-height: 1.35;
	color: #607683;
	min-height: 3.4em;
	margin-bottom: 0.85rem;
}

.badge-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.34rem 0.66rem;
	border-radius: 999px;
	font-size: 13px;
	border: 1px dashed transparent;
}

.badge-mint {
	background-color: #d9ece7;
	color: #1f7d73;
	border-color: #b8ddd4;
}

.badge-peach {
	background-color: #f9ece8;
	color: #e87c64;
	border-color: #f5ccc1;
}

@media (max-width: 1199.98px) {
	.dashboard-title {
		font-size: 18px;
	}

	.dashboard-subtitle {
		font-size: 13px;
	}

	.flow-title {
		font-size: 18px;
	}

	.flow-card-title {
		font-size: 18px;
	}

	.flow-card-copy {
		font-size: 13px;
	}
}

@media (max-width: 991.98px) {
	body.crm-main {
		background: linear-gradient(180deg, #f3efe9 0%, #dbe5ea 100%);
	}

	.crm-content {
		padding: 1.2rem 1rem;
	}
}