html{
	min-height:100%;
}
body.bccp-body{
	margin:0;
	padding:0;
	min-height:100vh;
	background:#edf4f5;
	font-family:Arial, Helvetica, sans-serif;
	color:#111827;
	display:flex;
	flex-direction:column;
}

.bccp-app{
	box-sizing:border-box;
	width:100%;
	min-height:100vh;
	padding:10px 18px 24px;
	display:flex;
	flex-direction:column;
}

.bccp-topbar{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:16px;
	background:#fff;
	border:1px solid #dfe7e3;
	border-radius:24px;
	padding:14px 16px;
	margin-bottom:14px;
}

.bccp-topbar__brand img{
	max-width:190px;
	height:auto;
	display:block;
}

.bccp-topbar__actions{
	display:flex;
	align-items:center;
	gap:12px;
}

.bccp-icon-btn{
	position:relative;
	width:46px;
	height:46px;
	border-radius:14px;
	border:1px solid #cfe8d2;
	background:#f5fbf6;
	display:grid;
	place-items:center;
	color:#1f7d28;
	text-decoration:none;
	box-shadow:0 6px 14px rgba(15,23,42,.04);
	transition:.2s ease;
}

.bccp-icon-btn:hover{
	background:#eaf7ed;
	border-color:#9ed0a6;
}

.bccp-icon-btn em{
	position:absolute;
	right:-4px;
	top:-6px;
	min-width:20px;
	height:20px;
	border-radius:999px;
	background:#2ea836;
	color:#fff;
	font-style:normal;
	font-size:.72rem;
	font-weight:800;
	display:grid;
	place-items:center;
	padding:0 5px;
}

.bccp-user-menu{
	position:relative;
}

.bccp-user-menu__summary{
	display:flex;
	align-items:center;
	gap:10px;
	background:#fff;
	border:1px solid #dfe7e3;
	border-radius:18px;
	padding:8px 10px;
	cursor:pointer;
	list-style:none;
}

.bccp-user-menu__summary::-webkit-details-marker{
	display:none;
}

.bccp-avatar{
	width:42px;
	height:42px;
	border-radius:999px;
	background:#e6f4e8;
	color:#1f7d28;
	display:grid;
	place-items:center;
	font-weight:800;
	font-size:1rem;
	flex:0 0 42px;
}

.bccp-user-menu__chevron{
	color:#6b7280;
	font-size:.9rem;
}

.bccp-user-menu__dropdown{
	position:absolute;
	top:calc(100% + 8px);
	right:0;
	min-width:220px;
	background:#fff;
	border:1px solid #dfe7e3;
	border-radius:16px;
	box-shadow:0 12px 32px rgba(15,23,42,.08);
	padding:10px;
	z-index:30;
}

.bccp-user-menu__meta{
	padding:8px 10px 12px;
	border-bottom:1px solid #edf1ef;
	margin-bottom:8px;
}

.bccp-user-menu__meta strong{
	display:block;
	font-size:1rem;
	font-weight:800;
	color:#111827;
	line-height:1.2;
}

.bccp-user-menu__meta small{
	display:block;
	margin-top:4px;
	font-size:.82rem;
	font-style:italic;
	color:#6b7280;
}

.bccp-user-menu__dropdown a{
	display:block;
	padding:10px 12px;
	border-radius:12px;
	text-decoration:none;
	color:#111827;
	font-weight:600;
}

.bccp-user-menu__dropdown a:hover{
	background:#f4f8f5;
	color:#1f7d28;
}

.bccp-nav{
	display:flex;
	gap:10px;
	overflow-x:auto;
	overflow-y:hidden;
	white-space:nowrap;
	padding:10px;
	background:#fff;
	border:1px solid #dfe7e3;
	border-radius:18px;
	margin-bottom:14px;
	scrollbar-width:thin;
}

.bccp-nav a{
	flex:0 0 auto;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:12px 16px;
	border-radius:14px;
	text-decoration:none;
	font-weight:700;
	color:#24324a;
	background:#f6f8f9;
	transition:background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.bccp-nav a:hover{
	background:#edf8ef;
	color:#1f7d28;
	transform:translateY(-1px);
	box-shadow:0 6px 14px rgba(15,23,42,.05);
}

.bccp-nav a.active{
	background:#2ea836;
	color:#fff;
	text-decoration:none;
	box-shadow:none;
}

.bccp-nav a.active:hover{
	background:#2ea836;
	color:#fff;
	transform:none;
	box-shadow:none;
}

.bccp-hero,
.bccp-doc{
	background:#fff;
	border:1px solid #dfe7e3;
	border-radius:24px;
	padding:28px;
	box-shadow:0 8px 20px rgba(15,23,42,.04);
	margin-bottom:18px;
}

.bccp-badge{
	display:inline-flex;
	align-items:center;
	padding:8px 12px;
	border-radius:999px;
	background:#edf8ef;
	color:#1f7d28;
	font-size:.85rem;
	font-weight:700;
	margin-bottom:16px;
}

.bccp-hero h1{
	margin:0 0 12px;
	font-size:2.4rem;
	line-height:1.08;
	color:#111827;
	font-weight:800;
}

.bccp-hero p{
	margin:0;
	font-size:1rem;
	line-height:1.7;
	color:#667085;
	max-width:760px;
}

.bccp-cards{
	display:grid;
	grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
	gap:18px;
	margin-top:18px;
}

.bccp-card{
	background:#fff;
	border:1px solid #dfe7e3;
	border-radius:20px;
	padding:24px;
	box-shadow:0 8px 20px rgba(15,23,42,.04);
}

.bccp-card--wide{
	grid-column:1 / -1;
}

.bccp-card span{
	display:block;
	color:#6b7280;
	font-size:.95rem;
	margin-bottom:10px;
}

.bccp-card strong{
	display:block;
	font-size:1.55rem;
	line-height:1.08;
	color:#111827;
	font-weight:800;
}

.bccp-mini{
	margin:12px 0 0;
	color:#667085;
	line-height:1.6;
}

.bccp-code{
	word-break:break-word;
	overflow-wrap:anywhere;
	font-size:1.2rem !important;
}

.bccp-code-block{
	display:block;
	width:100%;
	background:#06163d;
	color:#fff;
	padding:16px;
	border-radius:16px;
	font-family:Consolas, Monaco, monospace;
	line-height:1.65;
	word-break:break-word;
	overflow-wrap:anywhere;
	white-space:pre-wrap;
	box-sizing:border-box;
}

.bccp-code-block code{
	white-space:inherit;
	word-break:inherit;
	overflow-wrap:inherit;
}

.bccp-btn{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	gap:8px;
	padding:12px 16px;
	border-radius:14px;
	border:none;
	background:#2ea836;
	color:#fff;
	text-decoration:none;
	font-weight:700;
	cursor:pointer;
}

.bccp-btn:hover{
	background:#1f7d28;
}

.bccp-inline-form{
	margin-top:16px;
}

.bccp-doc h2{
	margin:0 0 10px;
	font-size:1.6rem;
	line-height:1.2;
	color:#111827;
}

.bccp-doc h3{
	margin:18px 0 10px;
	font-size:1.05rem;
	color:#111827;
}

.bccp-doc p{
	margin:0 0 14px;
	color:#475467;
	line-height:1.7;
}

.bccp-doc code{
	font-family:Consolas, Monaco, monospace;
}

.bccp-doc ul{
	margin:0 0 18px 18px;
	padding:0;
	color:#334155;
	line-height:1.7;
}

.bccp-doc pre{
	background:#06163d;
	color:#fff;
	padding:16px;
	border-radius:16px;
	overflow-x:hidden;
	overflow-y:auto;
	white-space:pre-wrap;
	word-break:break-word;
	overflow-wrap:anywhere;
	font-family:Consolas, Monaco, monospace;
	line-height:1.6;
	box-sizing:border-box;
}

.bccp-doc pre code{
	white-space:inherit;
	word-break:inherit;
	overflow-wrap:inherit;
}

.bccp-doc-section + .bccp-doc-section{
	margin-top:28px;
	padding-top:28px;
	border-top:1px solid #e8efec;
}

.bccp-doc-nav{
	display:flex;
	gap:10px;
	overflow-x:auto;
	white-space:nowrap;
	padding:10px;
	background:#fff;
	border:1px solid #dfe7e3;
	border-radius:18px;
	margin-bottom:14px;
}

.bccp-doc-nav a{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:10px 14px;
	border-radius:12px;
	background:#f6f8f9;
	color:#24324a;
	font-weight:700;
	text-decoration:none;
	transition:background .2s ease, color .2s ease;
}

.bccp-doc-nav a:hover{
	background:#edf8ef;
	color:#1f7d28;
}

.bccp-email{
	font-size:1.1rem !important;
	word-break:break-all;
}

.bccp-auth{
	min-height:100vh;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:24px;
	box-sizing:border-box;
}

.bccp-auth__shell{
	width:100%;
	max-width:1180px;
	display:grid;
	grid-template-columns:1fr 1fr;
	border-radius:28px;
	overflow:hidden;
	background:#fff;
	box-shadow:0 18px 60px rgba(15,23,42,.08);
}

.bccp-auth__brand{
	background:linear-gradient(135deg,#166d22 0%, #2ea836 100%);
	color:#fff;
	padding:56px 44px;
}

.bccp-auth__brand img{
	max-width:220px;
	height:auto;
	display:block;
	margin-bottom:28px;
}

.bccp-auth__brand h2{
	font-size:2.3rem;
	line-height:1.1;
	margin:0 0 18px;
}

.bccp-auth__brand p{
	font-size:1rem;
	line-height:1.7;
	margin:0 0 22px;
}

.bccp-auth__brand ul{
	margin:0;
	padding-left:18px;
	line-height:1.9;
}

.bccp-auth__panel{
	padding:56px 44px;
	background:#fff;
}

.bccp-auth__panel h1{
	font-size:2.2rem;
	margin:0 0 10px;
}

.bccp-auth__panel p{
	margin:0 0 22px;
	color:#667085;
	line-height:1.7;
}

.bccp-auth__form{
	display:flex;
	flex-direction:column;
	gap:12px;
}

.bccp-auth__form label{
	font-weight:700;
	font-size:.95rem;
}

.bccp-auth__form input[type="text"],
.bccp-auth__form input[type="password"]{
	height:52px;
	border:1px solid #d0d5dd;
	border-radius:14px;
	padding:0 14px;
	font-size:15px;
	box-sizing:border-box;
}

.bccp-auth__form input:focus{
	outline:none;
	border-color:#2ea836;
}

.bccp-auth__remember{
	display:flex;
	align-items:center;
	gap:8px;
	margin-top:4px;
	font-size:14px;
}

.bccp-auth__links{
	margin-top:18px;
	display:flex;
	flex-wrap:wrap;
	gap:18px;
}

.bccp-auth__links a{
	color:#2ea836;
	text-decoration:none;
	font-weight:600;
}

.bccp-auth__links a:hover{
	text-decoration:underline;
}

.bccp-alert{
	margin:0 0 18px;
	padding:14px 16px;
	border-radius:14px;
	font-size:14px;
	font-weight:700;
}

.bccp-alert--error{
	background:#fff1f0;
	border:1px solid #f3b7b2;
	color:#c0392b;
}

.bccp-alert--success{
	background:#eefbf1;
	border:1px solid #a7e1b2;
	color:#1f7d28;
}

.bccp-register-grid{
	display:grid;
	grid-template-columns:1fr 1fr;
	gap:14px;
}

.bccp-register-card{
	display:block;
	padding:20px;
	border:1px solid #dfe7e3;
	border-radius:18px;
	text-decoration:none;
	color:#111827;
	background:#fff;
}

.bccp-register-card:hover{
	border-color:#9ed0a6;
	background:#f7fbf8;
}

.bccp-register-card strong{
	display:block;
	margin-bottom:8px;
	font-size:1.05rem;
}

.bccp-register-card span{
	display:block;
	color:#667085;
	line-height:1.6;
}


.bccp-filter-chips{
	display:flex;
	gap:10px;
	flex-wrap:wrap;
}

.bccp-chip{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:12px 16px;
	border-radius:999px;
	border:1px solid #c9d7d1;
	background:#fff;
	color:#24324a;
	font-weight:700;
	cursor:pointer;
}

.bccp-chip.is-active{
	background:#2ea836;
	border-color:#2ea836;
	color:#fff;
}

.bccp-card--placeholder{
	padding:24px;
}

.bccp-placeholder-box{
	min-height:280px;
	border:2px dashed #d8e4dd;
	border-radius:18px;
	background:linear-gradient(180deg,#fbfdfc 0%, #f4f8f6 100%);
}

@media (max-width: 960px){
	.bccp-app{
		padding:10px 14px 22px;
	}

	.bccp-topbar{
		padding:14px 16px;
	}

	.bccp-topbar__brand img{
		max-width:150px;
	}

	.bccp-nav{
		overflow-x:auto;
		-webkit-overflow-scrolling:touch;
	}

	.bccp-hero,
	.bccp-doc{
		padding:22px 18px;
	}

	.bccp-hero h1{
		font-size:2rem;
	}

	.bccp-doc h2{
		font-size:1.35rem;
	}

	.bccp-hero h1{
		font-size:2.2rem;
		line-height:1.02;
	}

	.bccp-card{
		padding:20px 18px;
	}

	.bccp-card strong{
		font-size:1.8rem;
	}

	.bccp-auth__shell{
		grid-template-columns:1fr;
	}

	.bccp-auth__brand,
	.bccp-auth__panel{
		padding:30px 24px;
	}

	.bccp-register-grid{
		grid-template-columns:1fr;
	}
}


.bccp-nav a{
	position:relative;
	transition:background .2s ease,color .2s ease,transform .2s ease,box-shadow .2s ease;
}

.bccp-nav a:hover{
	background:#edf8ef;
	color:#1f7d28;
	transform:translateY(-1px);
}

.bccp-nav a.active,
.bccp-nav a.active:hover{
	background:#2ea836;
	color:#fff;
	text-decoration:none;
	box-shadow:none;
}

.bccp-hero h1{
	font-size:2.35rem;
	line-height:1.08;
}

.bccp-card strong{
	font-size:1.7rem;
}

.bccp-doc pre,
.bccp-doc code,
.bccp-code{
	overflow-wrap:anywhere;
	word-break:break-word;
}

.bccp-doc pre code{
	white-space:pre-wrap;
}

.bccp-filter-chips{
	display:flex;
	gap:12px;
	flex-wrap:wrap;
	margin-top:14px;
}

.bccp-chip{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:12px 18px;
	border-radius:999px;
	border:1px solid #c7d7cf;
	background:#fff;
	color:#1f3250;
	font-weight:700;
	cursor:pointer;
}

.bccp-chip.is-active{
	background:#2ea836;
	border-color:#2ea836;
	color:#fff;
}

.bccp-card--placeholder{
	padding:0;
	min-height:360px;
	background:#fff;
	border:1px dashed #cbd8d1;
}

.bccp-placeholder-box{
	min-height:360px;
	border-radius:20px;
	background:linear-gradient(180deg,#ffffff 0%,#f8fbf9 100%);
}


.bccp-filter-chips{
	display:flex;
	gap:10px;
	flex-wrap:wrap;
}

.bccp-chip{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:12px 16px;
	border-radius:999px;
	border:1px solid #c9d7d1;
	background:#fff;
	color:#24324a;
	font-weight:700;
	cursor:pointer;
}

.bccp-chip.is-active{
	background:#2ea836;
	border-color:#2ea836;
	color:#fff;
}

.bccp-card--placeholder{
	padding:24px;
}

.bccp-placeholder-box{
	min-height:280px;
	border:2px dashed #d8e4dd;
	border-radius:18px;
	background:linear-gradient(180deg,#fbfdfc 0%, #f4f8f6 100%);
}

@media (max-width: 960px){
	.bccp-hero h1{
		font-size:2rem;
	}
}


.bccp-app .bccp-doc-nav{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	padding:14px;
	background:#fff;
	border:1px solid #dfe7e3;
	border-radius:20px;
	margin-bottom:16px;
}

.bccp-app .bccp-doc-nav a{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:11px 15px;
	border-radius:999px;
	background:#f4f8f5;
	border:1px solid #dfe7e3;
	color:#24324a;
	font-weight:700;
	text-decoration:none;
	line-height:1.2;
}

.bccp-app .bccp-doc-nav a:hover{
	background:#edf8ef;
	border-color:#b8d9bf;
	color:#1f7d28;
}

.bccp-pre,
.bccp-doc pre{
	display:block;
	width:100%;
	max-width:100%;
	overflow:hidden;
	white-space:pre-wrap !important;
	word-break:break-word;
	overflow-wrap:anywhere;
}

.bccp-pre code,
.bccp-doc pre code{
	display:block;
	white-space:pre-wrap !important;
	word-break:break-word;
	overflow-wrap:anywhere;
	line-break:anywhere;
}

.bccp-doc-section h2 + p,
.bccp-doc-section p + p{
	margin-top:0;
}

@media (max-width: 720px){
	.bccp-app .bccp-doc-nav{
		flex-wrap:nowrap;
		overflow-x:auto;
		white-space:nowrap;
		-webkit-overflow-scrolling:touch;
	}

	.bccp-app .bccp-doc-nav a{
		flex:0 0 auto;
	}
}

/* v1.4.0 documentation refinements */
.bccp-doc-nav{
	display:flex;
	align-items:center;
	gap:14px;
	padding:14px;
	background:#fff;
	border:1px solid #dfe7e3;
	border-radius:20px;
	margin-bottom:16px;
}

.bccp-doc-nav__links{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	min-width:0;
}

.bccp-doc-nav a{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:11px 15px;
	border-radius:999px;
	background:#f4f8f5;
	border:1px solid #dfe7e3;
	color:#24324a;
	font-weight:700;
	text-decoration:none;
	line-height:1.2;
}

.bccp-doc-nav a:hover{
	background:#edf8ef;
	border-color:#b8d9bf;
	color:#1f7d28;
}

.bccp-doc-nav__pdf{
	margin-left:auto;
	gap:8px;
	background:#fff !important;
	border-color:#cfdad4 !important;
	white-space:nowrap;
	box-shadow:0 6px 14px rgba(15,23,42,.04);
}

.bccp-doc-nav__pdf:hover{
	background:#f8fbf9 !important;
}

.bccp-pre,
.bccp-doc pre{
	display:block;
	width:100%;
	max-width:100%;
	overflow:hidden;
	white-space:pre-wrap !important;
	word-break:break-word !important;
	overflow-wrap:anywhere !important;
}

.bccp-pre code,
.bccp-doc pre code{
	display:block;
	white-space:pre-wrap !important;
	word-break:break-word !important;
	overflow-wrap:anywhere !important;
	line-break:anywhere;
}

@media (max-width: 960px){
	.bccp-doc-nav{
		align-items:flex-start;
		flex-direction:column;
	}

	.bccp-doc-nav__links{
		width:100%;
	}

	.bccp-doc-nav__pdf{
		margin-left:0;
	}
}

@media (max-width: 720px){
	.bccp-doc-nav__links{
		flex-wrap:nowrap;
		overflow-x:auto;
		white-space:nowrap;
		-webkit-overflow-scrolling:touch;
	}

	.bccp-doc-nav__links a{
		flex:0 0 auto;
	}
}


/* v1.4.1 final documentation and captcha fixes */
.bccp-doc-nav{
	display:flex !important;
	align-items:center;
	gap:14px;
	padding:14px;
	background:#fff;
	border:1px solid #dfe7e3;
	border-radius:20px;
	margin-bottom:16px;
}

.bccp-doc-nav__links{
	display:flex;
	flex-wrap:wrap;
	gap:10px;
	min-width:0;
}

.bccp-doc-nav__links a,
.bccp-doc-nav__pdf{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:11px 15px;
	border-radius:999px;
	background:#f4f8f5;
	border:1px solid #dfe7e3;
	color:#24324a;
	font-weight:700;
	text-decoration:none;
	line-height:1.2;
}

.bccp-doc-nav__links a:hover,
.bccp-doc-nav__pdf:hover{
	background:#edf8ef;
	border-color:#b8d9bf;
	color:#1f7d28;
}

.bccp-doc-nav__pdf{
	margin-left:auto;
	gap:8px;
	background:#fff;
	box-shadow:0 6px 14px rgba(15,23,42,.04);
	white-space:nowrap;
}

.bccp-pre,
.bccp-pre code,
.bccp-doc pre,
.bccp-doc pre code{
	width:100%;
	max-width:100%;
	overflow:hidden;
	white-space:normal !important;
	word-break:break-word !important;
	overflow-wrap:anywhere !important;
}

.bccp-pre code,
.bccp-doc pre code{
	display:block;
}

.bccp-code-line{
	display:block;
	white-space:pre-wrap;
	word-break:break-word;
	overflow-wrap:anywhere;
}

@media (max-width: 960px){
	.bccp-doc-nav{
		align-items:flex-start;
		flex-direction:column;
	}
	.bccp-doc-nav__links{
		width:100%;
	}
	.bccp-doc-nav__pdf{
		margin-left:0;
	}
}

@media (max-width: 720px){
	.bccp-doc-nav__links{
		flex-wrap:nowrap;
		overflow-x:auto;
		white-space:nowrap;
		-webkit-overflow-scrolling:touch;
	}
	.bccp-doc-nav__links a{
		flex:0 0 auto;
	}
}

/* Leads panel */
.bccp-leads-toolbar{
	display:flex;
	align-items:flex-start;
	justify-content:space-between;
	gap:22px;
}

.bccp-leads-toolbar p{
	margin:6px 0 0;
	color:#52607a;
	max-width:720px;
}

.bccp-chip{
	text-decoration:none;
	display:inline-flex;
	align-items:center;
	gap:8px;
}

.bccp-chip small{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-width:22px;
	height:22px;
	padding:0 7px;
	border-radius:999px;
	background:rgba(255,255,255,.78);
	font-size:12px;
	font-weight:800;
}

.bccp-leads-card{
	background:#ffffff;
	border:1px solid rgba(9,34,60,.08);
	border-radius:22px;
	box-shadow:0 12px 34px rgba(9,34,60,.05);
	padding:24px;
	margin-top:18px;
}

.bccp-empty-state{
	min-height:220px;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:6px;
	border:2px dashed rgba(39,166,54,.22);
	border-radius:18px;
	color:#52607a;
	text-align:center;
}

.bccp-empty-state strong{
	font-size:20px;
	color:#06152d;
}

.bccp-leads-list{
	display:grid;
	gap:12px;
}

.bccp-lead-row{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:18px;
	padding:18px;
	border:1px solid rgba(9,34,60,.08);
	border-radius:18px;
	background:linear-gradient(180deg,#ffffff 0%,#fbfdfb 100%);
}

.bccp-lead-row:hover{
	border-color:rgba(39,166,54,.28);
	box-shadow:0 10px 22px rgba(9,34,60,.06);
}

.bccp-lead-row.is-contacted{
	background:#effaf1;
	border-color:rgba(36,173,55,.28);
}

.bccp-lead-row__main{
	display:flex;
	flex-direction:column;
	gap:8px;
	min-width:0;
}

.bccp-lead-row__main strong{
	font-size:18px;
	line-height:1.2;
	color:#06152d;
}

.bccp-lead-meta{
	display:flex;
	flex-wrap:wrap;
	gap:8px 14px;
	color:#52607a;
	font-size:14px;
}

.bccp-lead-row__side{
	display:flex;
	align-items:center;
	justify-content:flex-end;
	gap:12px;
	flex-shrink:0;
}


.bccp-contacted-form{
	margin:0;
}

.bccp-contacted-toggle{
	display:inline-flex;
	align-items:center;
	gap:8px;
	padding:8px 12px;
	border:1px solid rgba(9,34,60,.12);
	border-radius:999px;
	background:#ffffff;
	color:#06152d;
	font-size:13px;
	font-weight:800;
	cursor:pointer;
	user-select:none;
	transition:background .18s ease,border-color .18s ease,color .18s ease;
}

.bccp-contacted-toggle input{
	position:absolute;
	opacity:0;
	pointer-events:none;
}

.bccp-contacted-text{
	display:flex;
	flex-direction:column;
	line-height:1.1;
}

.bccp-contacted-text small{
	margin-top:3px;
	font-size:10px;
	font-weight:700;
	color:rgba(6,21,45,.58);
}

.bccp-contacted-toggle.is-checked .bccp-contacted-text small{
	color:rgba(24,143,41,.72);
}

.bccp-contacted-box{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:18px;
	height:18px;
	border:2px solid rgba(9,34,60,.22);
	border-radius:6px;
	background:#ffffff;
	transition:all .18s ease;
}

.bccp-contacted-box svg{
	width:14px;
	height:14px;
	fill:#ffffff;
	opacity:0;
	transform:scale(.7);
	transition:all .18s ease;
}

.bccp-contacted-toggle.is-checked{
	background:#e8f8ea;
	border-color:rgba(36,173,55,.28);
	color:#188f29;
}

.bccp-contacted-toggle.is-checked .bccp-contacted-box{
	background:#24ad37;
	border-color:#24ad37;
}

.bccp-contacted-toggle.is-checked .bccp-contacted-box svg{
	opacity:1;
	transform:scale(1);
}

.bccp-contacted-toggle:hover{
	border-color:rgba(36,173,55,.35);
}

.bccp-lead-type,
.bccp-lead-code{
	display:inline-flex;
	align-items:center;
	width:max-content;
	border-radius:999px;
	padding:6px 10px;
	font-size:12px;
	font-weight:800;
}

.bccp-lead-type{
	background:#e8f8ea;
	color:#179128;
}

.bccp-lead-code{
	background:#f3f6f7;
	color:#06152d;
}

.bccp-btn--ghost{
	background:#ffffff;
	border:1px solid rgba(9,34,60,.14);
	color:#06152d;
}

.bccp-btn--ghost:hover{
	background:#27a636;
	border-color:#27a636;
	color:#ffffff;
}

.bccp-modal{
	display:none;
	position:fixed;
	inset:0;
	z-index:999999;
}

.bccp-modal.is-open{
	display:block;
}

.bccp-modal__backdrop{
	position:absolute;
	inset:0;
	background:rgba(6,21,45,.56);
	backdrop-filter:blur(4px);
}

.bccp-modal__dialog{
	position:relative;
	width:min(920px, calc(100vw - 32px));
	max-height:calc(100vh - 48px);
	overflow:auto;
	margin:24px auto;
	background:#ffffff;
	border-radius:24px;
	padding:28px;
	box-shadow:0 30px 90px rgba(6,21,45,.28);
}

.bccp-modal__close{
	position:absolute;
	top:18px;
	right:18px;
	width:40px;
	height:40px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	border:0 !important;
	border-radius:50%;
	background:#24ad37 !important;
	color:#ffffff !important;
	font-size:24px;
	font-weight:800;
	line-height:1;
	cursor:pointer;
	box-shadow:0 10px 22px rgba(36,173,55,.24);
}

.bccp-modal__close:hover,
.bccp-modal__close:focus{
	background:#188f29 !important;
	color:#ffffff !important;
	outline:3px solid rgba(36,173,55,.18);
}

.bccp-modal__dialog h2{
	margin:12px 52px 18px 0;
	font-size:30px;
	line-height:1.15;
	color:#06152d;
}

.bccp-modal-grid{
	display:grid;
	grid-template-columns:repeat(3, minmax(0, 1fr));
	gap:12px;
	margin:18px 0;
}

.bccp-modal-grid div,
.bccp-modal-message{
	border:1px solid rgba(9,34,60,.08);
	border-radius:16px;
	padding:14px;
	background:#fbfdfb;
}

.bccp-modal-grid small,
.bccp-modal-message small{
	display:block;
	margin-bottom:6px;
	font-size:12px;
	font-weight:800;
	text-transform:uppercase;
	letter-spacing:.04em;
	color:#52607a;
}

.bccp-modal-grid strong{
	font-size:15px;
	color:#06152d;
	word-break:break-word;
}

.bccp-modal-message p{
	margin:0;
	color:#06152d;
}

.bccp-lead-raw{
	margin-top:18px;
	border:1px solid rgba(9,34,60,.08);
	border-radius:16px;
	padding:14px;
}

.bccp-lead-raw summary{
	cursor:pointer;
	font-weight:800;
	color:#06152d;
}

.bccp-lead-raw table{
	width:100%;
	border-collapse:collapse;
	margin-top:12px;
	font-size:13px;
}

.bccp-lead-raw th,
.bccp-lead-raw td{
	border-top:1px solid rgba(9,34,60,.08);
	padding:9px;
	text-align:left;
	vertical-align:top;
	word-break:break-word;
}

.bccp-lead-raw th{
	width:220px;
	color:#52607a;
}

@media (max-width: 782px){
	.bccp-leads-toolbar,
	.bccp-lead-row,
	.bccp-lead-row__side{
		align-items:stretch;
		flex-direction:column;
	}

	.bccp-leads-card{
		padding:14px;
	}

	.bccp-modal__dialog{
		padding:22px;
	}

	.bccp-modal-grid{
		grid-template-columns:1fr;
	}
}

/* Leads v1.5.4 refinements */
.bccp-leads-controls{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:14px;
	margin-bottom:16px;
	color:#52607a;
	font-weight:700;
}
.bccp-per-page-form{
	display:flex;
	align-items:center;
	gap:8px;
	margin:0;
}
.bccp-per-page-form label{
	font-size:13px;
	font-weight:800;
	color:#06152d;
}
.bccp-per-page-form select{
	min-height:42px;
	border:1px solid rgba(9,34,60,.16);
	border-radius:999px;
	background:#fff;
	padding:0 14px;
	font-weight:800;
	color:#06152d;
}
.bccp-modal-actions{
	display:flex;
	align-items:center;
	flex-wrap:wrap;
	gap:10px;
	margin:0 0 16px;
}
.bccp-btn--whatsapp{
	background:#24ad37;
	border-color:#24ad37;
	color:#fff !important;
	text-decoration:none !important;
}
.bccp-btn--whatsapp:hover,
.bccp-btn--whatsapp:focus{
	background:#188f29;
	border-color:#188f29;
	color:#fff !important;
}
.bccp-copy-source{
	position:absolute;
	left:-9999px;
	width:1px;
	height:1px;
	opacity:0;
}
.bccp-forward-form{
	margin:18px 0 0;
	padding:16px;
	border:1px solid rgba(9,34,60,.08);
	border-radius:16px;
	background:#fbfdfb;
}
.bccp-forward-form label{
	display:block;
	margin-bottom:8px;
	font-size:13px;
	font-weight:900;
	color:#06152d;
}
.bccp-forward-form > div{
	display:flex;
	gap:10px;
}
.bccp-forward-form input{
	width:100%;
	min-height:46px;
	border:1px solid rgba(9,34,60,.14);
	border-radius:14px;
	padding:0 14px;
	font-weight:700;
	color:#06152d;
}
.bccp-forward-form small{
	display:block;
	margin-top:8px;
	color:#52607a;
}
.bccp-pagination{
	display:flex;
	align-items:center;
	justify-content:center;
	gap:10px;
	margin-top:18px;
	flex-wrap:wrap;
}
.bccp-pagination a,
.bccp-pagination span{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	min-height:42px;
	padding:0 16px;
	border-radius:999px;
	font-weight:800;
}
.bccp-pagination a{
	background:#fff;
	border:1px solid rgba(9,34,60,.14);
	color:#06152d;
	text-decoration:none;
}
.bccp-pagination a:hover{
	background:#27a636;
	border-color:#27a636;
	color:#fff;
}
.bccp-pagination span{
	background:#f3f6f7;
	color:#52607a;
}

@media (max-width: 782px){
	.bccp-leads-toolbar{
		gap:16px;
	}
	.bccp-filter-chips{
		display:flex;
		flex-wrap:wrap;
		gap:10px;
	}
	.bccp-chip{
		justify-content:center;
		min-height:48px;
	}
	.bccp-leads-controls{
		align-items:stretch;
		flex-direction:column;
	}
	.bccp-per-page-form{
		justify-content:space-between;
		width:100%;
	}
	.bccp-per-page-form select{
		min-width:120px;
	}
	.bccp-lead-row{
		padding:16px;
	}
	.bccp-lead-row__side .bccp-btn,
	.bccp-lead-open{
		width:100%;
		justify-content:center;
	}
	.bccp-contacted-toggle{
		width:100%;
		justify-content:center;
		align-items:center;
		border-radius:18px;
		padding:10px 12px;
	}
	.bccp-modal__dialog{
		width:calc(100vw - 20px);
		max-height:calc(100vh - 20px);
		margin:10px auto;
		padding:20px 16px;
		border-radius:20px;
	}
	.bccp-modal__close{
		top:12px;
		right:12px;
	}
	.bccp-modal__dialog h2{
		font-size:24px;
		margin-right:48px;
	}
	.bccp-modal-actions,
	.bccp-forward-form > div{
		align-items:stretch;
		flex-direction:column;
	}
	.bccp-modal-actions .bccp-btn,
	.bccp-forward-form .bccp-btn{
		width:100%;
		justify-content:center;
	}
	.bccp-lead-raw{
		padding:12px;
		overflow:auto;
	}
	.bccp-lead-raw table{
		min-width:560px;
	}
}

/* Leads v1.5.8 unified header */
.bccp-leads-intro{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:28px;
}
.bccp-leads-intro__content{
	max-width:760px;
}
.bccp-leads-intro__note{
	margin-top:8px !important;
	font-size:14px;
	line-height:1.7;
	color:#52607a;
}
.bccp-leads-intro .bccp-filter-chips{
	display:flex;
	align-items:center;
	justify-content:flex-end;
	gap:12px;
	flex-wrap:wrap;
	min-width:360px;
}
.bccp-leads-intro + .bccp-leads-card{
	margin-top:18px;
}
@media (max-width: 960px){
	.bccp-leads-intro{
		align-items:flex-start;
		flex-direction:column;
	}
	.bccp-leads-intro .bccp-filter-chips{
		justify-content:flex-start;
		min-width:0;
		width:100%;
	}
}
@media (max-width: 782px){
	.bccp-leads-intro{
		gap:20px;
	}
	.bccp-leads-intro .bccp-filter-chips{
		display:grid;
		grid-template-columns:1fr 1fr;
	}
	.bccp-leads-intro .bccp-chip:first-child{
		grid-column:1 / -1;
	}
	.bccp-leads-intro__note{
		font-size:13px;
	}
}

.bccp-forward-history{
	margin-top:16px;
	padding:16px;
	border:1px solid #d7eadb;
	border-radius:16px;
	background:#f2fbf4;
}

.bccp-forward-history > summary{
	display:block;
	font-weight:800;
	color:#04711b;
	cursor:pointer;
	list-style:none;
}

.bccp-forward-history > summary::-webkit-details-marker{display:none;}
.bccp-forward-history > summary::before{
	content:'▸';
	display:inline-block;
	margin-right:8px;
	transition:transform .18s ease;
}
.bccp-forward-history[open] > summary{
	margin-bottom:10px;
}
.bccp-forward-history[open] > summary::before{
	transform:rotate(90deg);
}

.bccp-forward-history table{
	width:100%;
	border-collapse:collapse;
	font-size:13px;
	background:#fff;
	border-radius:12px;
	overflow:hidden;
}

.bccp-forward-history th,
.bccp-forward-history td{
	padding:10px 12px;
	border-bottom:1px solid #e5efe7;
	text-align:left;
	vertical-align:top;
}

.bccp-forward-history th{
	font-size:12px;
	text-transform:uppercase;
	letter-spacing:.04em;
	color:#344767;
	background:#f7faf7;
}

.bccp-alert[data-bccp-auto-hide="1"]{
	animation:bccpAlertSoftOut .35s ease forwards;
	animation-delay:5s;
}

@keyframes bccpAlertSoftOut{
	to{opacity:0;transform:translateY(-6px);max-height:0;padding-top:0;padding-bottom:0;margin-top:0;margin-bottom:0;overflow:hidden;}
}

@media (max-width: 640px){
	.bccp-forward-history table,
	.bccp-forward-history thead,
	.bccp-forward-history tbody,
	.bccp-forward-history tr,
	.bccp-forward-history th,
	.bccp-forward-history td{
		display:block;
		width:100%;
	}
	.bccp-forward-history thead{display:none;}
	.bccp-forward-history td{border-bottom:0;padding:8px 10px;}
	.bccp-forward-history tr{border-bottom:1px solid #e5efe7;padding:8px 0;}
}

/* Cotas manual panel */
.bccp-cotas-intro{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:24px;
}
.bccp-hero-actions{
	display:flex;
	align-items:center;
	gap:12px;
	flex-wrap:wrap;
}
.bccp-btn--ghost{
	background:#fff !important;
	color:#001b3f !important;
	border:1px solid #d7e2df !important;
	box-shadow:none !important;
}
.bccp-btn--ghost:hover{
	background:#f5faf7 !important;
	color:#007721 !important;
	border-color:#a8ddb4 !important;
}
.bccp-cota-form-card,
.bccp-cotas-card{
	margin-top:18px;
	background:#fff;
	border:1px solid #dfe9e6;
	border-radius:24px;
	padding:28px;
	box-shadow:0 18px 50px rgba(7,32,41,.04);
}
.bccp-cota-form-card h2{
	margin:0 0 20px;
	font-size:24px;
	line-height:1.2;
	color:#001b3f;
}
.bccp-cota-form{
	display:flex;
	flex-direction:column;
	gap:18px;
}
.bccp-form-grid{
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:16px;
}
.bccp-field{
	display:flex;
	flex-direction:column;
	gap:8px;
	font-weight:800;
	color:#001b3f;
}
.bccp-field span{
	font-size:12px;
	text-transform:uppercase;
	letter-spacing:.04em;
	color:#40557a;
}
.bccp-field em{
	font-style:normal;
	color:#1fac3c;
}
.bccp-field input,
.bccp-field select,
.bccp-field textarea{
	width:100%;
	min-height:48px;
	border:1px solid #d7e2df;
	border-radius:14px;
	background:#fff;
	padding:12px 14px;
	font:inherit;
	font-weight:700;
	color:#001b3f;
	outline:none;
	box-sizing:border-box;
}
.bccp-field textarea{
	min-height:110px;
	resize:vertical;
}
.bccp-field input:focus,
.bccp-field select:focus,
.bccp-field textarea:focus{
	border-color:#28ac3c;
	box-shadow:0 0 0 4px rgba(40,172,60,.10);
}
.bccp-field--full{
	width:100%;
}
.bccp-form-actions{
	display:flex;
	align-items:center;
	gap:12px;
	flex-wrap:wrap;
}
.bccp-empty-state{
	border:1px dashed #cfe4d5;
	border-radius:18px;
	background:#f7fbf8;
	padding:28px;
	text-align:center;
}
.bccp-empty-state strong{
	display:block;
	font-size:20px;
	color:#001b3f;
}
.bccp-empty-state p{
	margin:8px 0 18px;
	color:#40557a;
}
.bccp-cotas-list{
	display:flex;
	flex-direction:column;
	gap:12px;
}
.bccp-cota-item{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:18px;
	padding:20px;
	border:1px solid #dfe9e6;
	border-radius:18px;
	background:#fff;
}
.bccp-cota-item h2{
	margin:8px 0 6px;
	font-size:18px;
	line-height:1.25;
	color:#001b3f;
}
.bccp-cota-item p{
	margin:0;
	font-size:14px;
	color:#344767;
}
@media (max-width: 960px){
	.bccp-cotas-intro{
		align-items:flex-start;
		flex-direction:column;
	}
	.bccp-form-grid{
		grid-template-columns:repeat(2,minmax(0,1fr));
	}
}
@media (max-width: 640px){
	.bccp-cota-form-card,
	.bccp-cotas-card{
		padding:18px;
		border-radius:20px;
	}
	.bccp-form-grid{
		grid-template-columns:1fr;
	}
	.bccp-cota-item{
		align-items:flex-start;
		flex-direction:column;
	}
	.bccp-cota-item .bccp-btn{
		width:100%;
		justify-content:center;
	}
	.bccp-form-actions .bccp-btn,
	.bccp-form-actions .bccp-btn--ghost,
	.bccp-hero-actions .bccp-btn{
		width:100%;
		justify-content:center;
	}
}

.bccp-field-group{
	grid-column:1 / -1;
	display:grid;
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:16px;
	padding:18px;
	border:1px solid #dfe9e6;
	border-radius:18px;
	background:#fbfdfc;
}
.bccp-field-group[hidden]{display:none!important;}
.bccp-field-group h3{
	grid-column:1 / -1;
	margin:0 0 2px;
	font-size:15px;
	line-height:1.2;
	color:#008000;
}
@media (max-width: 960px){
	.bccp-field-group{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media (max-width: 640px){
	.bccp-field-group{grid-template-columns:1fr;padding:14px;}
}


.bccp-field--parc-restantes .bccp-inline-fields {
	display: grid;
	grid-template-columns: minmax(120px, .75fr) minmax(160px, 1fr);
	gap: 12px;
}

.bccp-field--parc-restantes .bccp-inline-fields label {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.bccp-field--parc-restantes .bccp-inline-fields small,
.bccp-field-hint {
	font-size: 12px;
	line-height: 1.35;
	color: #64748b;
}

.bccp-field-hint {
	display: block;
	margin-top: 6px;
}

@media (max-width: 640px) {
	.bccp-field--parc-restantes .bccp-inline-fields {
		grid-template-columns: 1fr;
	}
}

/* v1.6.8 - Cotas operational list */
.bccp-cotas-toolbar{display:flex;flex-direction:column;gap:16px;margin-bottom:18px}.bccp-cotas-toolbar>div:first-child{display:flex;flex-direction:column;gap:4px}.bccp-cotas-toolbar small{color:#64748b}.bccp-cotas-filter-form{display:grid;grid-template-columns:repeat(6,minmax(120px,1fr)) auto auto;gap:10px;align-items:end}.bccp-cotas-filter-form label{display:flex;flex-direction:column;gap:6px;font-size:12px;font-weight:700;color:#475569}.bccp-cotas-filter-form input,.bccp-cotas-filter-form select{width:100%;min-height:42px;border:1px solid #dbe4ee;border-radius:10px;background:#fff;padding:8px 10px;color:#0f172a}.bccp-cota-item{gap:16px}.bccp-cota-item__main{min-width:0}.bccp-cota-item__badges{display:flex;flex-wrap:wrap;gap:6px;margin-bottom:8px}.bccp-status-pill{display:inline-flex;align-items:center;min-height:24px;border-radius:999px;background:#f1f5f9;color:#334155;padding:3px 9px;font-size:12px;font-weight:800}.bccp-status-pill--publish{background:#dcfce7;color:#166534}.bccp-status-pill--draft{background:#fef3c7;color:#92400e}.bccp-status-pill--trash{background:#fee2e2;color:#991b1b}.bccp-cota-item--draft{background:#fffbeb}.bccp-cota-item--trash{opacity:.82;background:#fff1f2}.bccp-cota-item__actions{display:flex;align-items:center;justify-content:flex-end;gap:8px;flex-wrap:wrap}.bccp-cota-action-form{margin:0}.bccp-btn--danger{background:#fff;border:1px solid #fecaca;color:#991b1b}.bccp-btn--danger:hover{background:#fee2e2;color:#7f1d1d}.bccp-pagination{display:flex;align-items:center;justify-content:center;gap:12px;margin-top:18px}.bccp-pagination span{font-weight:800;color:#475569}
@media(max-width:900px){.bccp-cotas-filter-form{grid-template-columns:1fr 1fr}.bccp-cotas-filter-form .bccp-btn{width:100%;justify-content:center}.bccp-cota-item__actions{justify-content:flex-start}.bccp-cota-action-form,.bccp-cota-action-form button,.bccp-cota-item__actions>a{width:100%}}
@media(max-width:560px){.bccp-cotas-filter-form{grid-template-columns:1fr}.bccp-pagination{flex-direction:column}.bccp-cota-item__badges{gap:4px}}

.bccp-cotas-import-card,
.bccp-import-report {
	background: #fff;
	border: 1px solid rgba(0, 119, 33, 0.14);
	border-radius: 18px;
	box-shadow: 0 12px 32px rgba(16, 24, 40, 0.06);
	padding: 22px;
	margin-bottom: 18px;
}

.bccp-cotas-import-card {
	display: grid;
	grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.6fr);
	gap: 18px;
	align-items: start;
}

.bccp-cotas-import-card h2 {
	margin: 8px 0 8px;
}

.bccp-cotas-import-card p,
.bccp-cotas-import-card li {
	color: #475467;
}

.bccp-cotas-import-card ul {
	margin: 12px 0 0 18px;
	padding: 0;
}

.bccp-import-form {
	background: #f8faf8;
	border: 1px solid rgba(0, 119, 33, 0.12);
	border-radius: 14px;
	padding: 16px;
}

.bccp-import-form .bccp-btn {
	width: 100%;
	margin-top: 10px;
}

.bccp-import-report strong {
	display: block;
	font-size: 1rem;
	color: #101828;
	margin-bottom: 4px;
}

.bccp-import-report p {
	margin: 0 0 12px;
	color: #475467;
}

.bccp-table-wrap {
	overflow-x: auto;
}

.bccp-import-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.9rem;
}

.bccp-import-table th,
.bccp-import-table td {
	border-bottom: 1px solid #eaecf0;
	padding: 10px;
	text-align: left;
	vertical-align: top;
}

.bccp-import-table th {
	color: #344054;
	font-weight: 700;
	background: #f9fafb;
}

@media (max-width: 768px) {
	.bccp-cotas-import-card {
		grid-template-columns: 1fr;
	}
}


.bccp-cotas-import-card {
	margin-top: 18px;
}

.bccp-cotas-import-card .bccp-badge {
	margin-bottom: 8px;
}

.bccp-hero-actions .bccp-btn {
	white-space: nowrap;
}

/* v1.7.5 - Minhas cotas: coluna código interno, labels limpos e ações refinadas */
.bccp-cotas-table-hint{
	display:none;
	margin:0 0 10px;
	font-size:12px;
	font-weight:700;
	color:#64748b;
}
.bccp-cotas-table-wrap{
	position:relative;
	overflow-x:auto;
	-webkit-overflow-scrolling:touch;
	border:1px solid #dfe9e6;
	border-radius:18px;
	background:#fff;
	box-shadow:0 10px 28px rgba(16,24,40,.04);
}
.bccp-cotas-table-wrap:focus{
	outline:3px solid rgba(40,172,60,.18);
	outline-offset:3px;
}
.bccp-cotas-table-wrap::after{
	content:"";
	position:absolute;
	top:0;
	right:0;
	width:42px;
	height:100%;
	pointer-events:none;
	background:linear-gradient(to left, rgba(255,255,255,.98), rgba(255,255,255,0));
}
.bccp-cotas-table{
	width:100%;
	min-width:1320px;
	border-collapse:separate;
	border-spacing:0;
	font-size:13px;
	color:#001b3f;
}
.bccp-cotas-table th,
.bccp-cotas-table td{
	padding:14px 12px;
	border-bottom:1px solid #e7efec;
	text-align:left;
	vertical-align:middle;
	white-space:nowrap;
}
.bccp-cotas-table thead th{
	position:sticky;
	top:0;
	z-index:3;
	background:#f3faf5;
	color:#001b3f;
	font-size:12px;
	font-weight:900;
	letter-spacing:.01em;
}
.bccp-cotas-table tbody tr:last-child td{
	border-bottom:0;
}
.bccp-cotas-table tbody tr:nth-child(even) td{
	background:#fbfdfc;
}
.bccp-cotas-table tbody tr:hover td{
	background:#f4fbf6;
}
.bccp-cotas-table .bccp-col-sticky{
	position:sticky;
	left:0;
	z-index:2;
	min-width:190px;
	max-width:230px;
	background:#fff;
	box-shadow:10px 0 18px rgba(16,24,40,.04);
}
.bccp-cotas-table thead .bccp-col-sticky{
	z-index:4;
	background:#e9f7ed;
}
.bccp-cotas-table tbody tr:nth-child(even) .bccp-col-sticky{
	background:#fbfdfc;
}
.bccp-cotas-table tbody tr:hover .bccp-col-sticky{
	background:#f4fbf6;
}
.bccp-cotas-table .bccp-col-sticky strong{
	display:block;
	font-size:13px;
	line-height:1.2;
}
.bccp-cotas-table .bccp-col-sticky small{
	display:block;
	max-width:210px;
	margin-top:4px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
	color:#64748b;
	font-weight:600;
}
.bccp-cotas-table td small{
	display:block;
	margin-bottom:3px;
	color:#64748b;
	font-size:11px;
	font-weight:800;
	text-transform:uppercase;
	letter-spacing:.03em;
}
.bccp-cotas-table__row--draft td,
.bccp-cotas-table__row--draft .bccp-col-sticky{
	background:#fffbeb!important;
}
.bccp-cotas-table__row--trash td,
.bccp-cotas-table__row--trash .bccp-col-sticky{
	background:#fff1f2!important;
	opacity:.9;
}
.bccp-col-actions{
	min-width:250px;
}
.bccp-cotas-table-actions{
	display:flex;
	align-items:center;
	justify-content:flex-end;
	gap:8px;
	flex-wrap:nowrap;
}
.bccp-cotas-table-actions .bccp-btn,
.bccp-cotas-table-actions .bccp-btn--ghost,
.bccp-cotas-table-actions .bccp-btn--danger{
	min-height:36px;
	padding:8px 12px;
	border-radius:12px;
	font-size:12px;
	white-space:nowrap;
}
.bccp-cotas-table-actions .bccp-cota-action-form{
	margin:0;
}
@media(max-width:900px){
	.bccp-cotas-table-hint{display:block;}
	.bccp-cotas-table-wrap{border-radius:16px;}
	.bccp-cotas-table{min-width:1180px;font-size:12px;}
	.bccp-cotas-table th,.bccp-cotas-table td{padding:12px 10px;}
	.bccp-cotas-table .bccp-col-sticky{min-width:165px;max-width:185px;}
	.bccp-cotas-table .bccp-col-sticky small{max-width:165px;}
	.bccp-col-actions{min-width:230px;}
}


/* v1.7.5 - refinamentos da tabela de cotas */
@media (min-width:901px){
	.bccp-cotas-table-hint{display:none!important;}
}
.bccp-col-actions{
	min-width:320px;
}
.bccp-cotas-table-actions{
	justify-content:flex-start;
	gap:10px;
	flex-wrap:wrap;
}
.bccp-cotas-table-actions .bccp-btn,
.bccp-cotas-table-actions .bccp-btn--ghost,
.bccp-cotas-table-actions .bccp-btn--danger{
	min-width:86px;
	min-height:40px;
	padding:9px 14px;
	font-size:13px;
}
@media(max-width:900px){
	.bccp-cotas-table-hint{display:block!important;}
	.bccp-col-actions{min-width:300px;}
}


/* v1.7.6 - tabela de cotas mais compacta */
.bccp-cotas-table{
	font-size:12px;
	min-width:1240px;
}
.bccp-cotas-table th,
.bccp-cotas-table td{
	padding:11px 10px;
}
.bccp-cotas-table thead th{
	font-size:11.5px;
}
.bccp-cotas-table .bccp-col-sticky{
	min-width:150px;
	max-width:170px;
}
.bccp-cotas-table .bccp-col-sticky strong{
	font-size:12px;
}
.bccp-cotas-table td small{
	font-size:10.5px;
	margin-bottom:2px;
}
.bccp-col-actions{
	min-width:255px;
}
.bccp-cotas-table-actions{
	gap:7px;
}
.bccp-cotas-table-actions .bccp-btn,
.bccp-cotas-table-actions .bccp-btn--ghost,
.bccp-cotas-table-actions .bccp-btn--danger{
	min-width:auto;
	min-height:34px;
	padding:7px 10px;
	border-radius:10px;
	font-size:12px;
}
@media(max-width:900px){
	.bccp-cotas-table{min-width:1120px;font-size:11.5px;}
	.bccp-cotas-table th,.bccp-cotas-table td{padding:10px 9px;}
	.bccp-cotas-table .bccp-col-sticky{min-width:135px;max-width:150px;}
	.bccp-col-actions{min-width:235px;}
}

/* v1.8.2 - footer colado ao final em telas curtas */
.bccp-footer{
	margin-top:auto;
	padding:64px 8px 34px;
	color:#52617d;
}
.bccp-footer__inner{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px;
	border-top:1px solid rgba(0,0,0,.08);
	padding-top:18px;
	font-size:13px;
}
.bccp-footer__inner span{
	font-weight:800;
	color:#071833;
}
.bccp-footer__inner small{
	font-size:12px;
}
@media(max-width:700px){
	.bccp-footer{margin-top:30px;padding-bottom:26px;}
	.bccp-footer__inner{flex-direction:column;align-items:flex-start;}
}

/* v1.8.3 - perfil editável */
.bccp-profile-summary{
	grid-template-columns:repeat(4,minmax(0,1fr));
}
.bccp-alert--warning{
	background:#fff8e6;
	border:1px solid #f0d48a;
	color:#7a5300;
}
.bccp-section.bccp-profile-edit{
	margin-top:18px;
	background:#fff;
	border:1px solid #dfe9e6;
	border-radius:24px;
	padding:28px;
	box-shadow:0 18px 50px rgba(7,32,41,.04);
}
.bccp-section__head{
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
	gap:18px;
	margin-bottom:22px;
}
.bccp-section__head h2{
	margin:10px 0 6px;
	font-size:26px;
	line-height:1.15;
	color:#001b3f;
}
.bccp-section__head p{
	margin:0;
	color:#40557a;
}
.bccp-profile-form{
	display:flex;
	flex-direction:column;
	gap:22px;
}
.bccp-profile-group{
	border:1px solid #edf3f1;
	border-radius:18px;
	padding:18px;
	background:#fbfdfc;
}
.bccp-profile-group h3{
	margin:0 0 14px;
	font-size:17px;
	color:#001b3f;
}
.bccp-profile-form .bccp-field--full{
	grid-column:1/-1;
}
@media(max-width:1100px){
	.bccp-profile-summary{grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:700px){
	.bccp-profile-summary{grid-template-columns:1fr;}
	.bccp-section.bccp-profile-edit{padding:20px;border-radius:20px;}
	.bccp-profile-group{padding:14px;}
}

/* v1.8.4 - Perfil UX refinado */
.bccp-profile-edit--refined{
	padding:30px;
}
.bccp-profile-edit__head{
	border-bottom:1px solid #eef4f2;
	padding-bottom:18px;
	margin-bottom:24px;
}
.bccp-profile-group{
	padding:22px;
	background:linear-gradient(180deg,#ffffff 0%,#fbfdfc 100%);
	border-color:#dfe9e6;
}
.bccp-profile-group__title{
	display:flex;
	align-items:flex-start;
	gap:12px;
	margin-bottom:18px;
}
.bccp-profile-group__title > span{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:32px;
	height:32px;
	border-radius:999px;
	background:#eaf9ee;
	color:#007721;
	font-size:12px;
	font-weight:900;
	flex:0 0 auto;
}
.bccp-profile-group__title h3{
	margin:0 0 4px;
	font-size:18px;
	line-height:1.2;
}
.bccp-profile-group__title p{
	margin:0;
	font-size:13px;
	color:#506381;
}
.bccp-form-grid--profile{
	grid-template-columns:repeat(3,minmax(0,1fr));
	gap:16px;
}
.bccp-profile-field input,
.bccp-profile-field textarea{
	background:#fff;
}
.bccp-profile-field small{
	display:block;
	margin-top:7px;
	font-size:12px;
	line-height:1.45;
	color:#64748b;
	font-weight:600;
	text-transform:none;
	letter-spacing:0;
}
.bccp-profile-field--bc_urlsite{
	grid-column:span 2;
}
.bccp-profile-field--bc_nombre_logradouro{
	grid-column:span 2;
}
.bccp-profile-field--bc_nombre_complemento{
	grid-column:span 1;
}
.bccp-profile-group--apresentacao .bccp-profile-field textarea{
	min-height:150px;
	resize:vertical;
}
.bccp-profile-inline-alert,
.bccp-profile-inline-ok{
	margin-top:14px;
	padding:13px 15px;
	border-radius:14px;
	font-size:13px;
	line-height:1.45;
}
.bccp-profile-inline-alert{
	background:#fff8e6;
	border:1px solid #f0d48a;
	color:#7a5300;
}
.bccp-profile-inline-ok{
	background:#effcf3;
	border:1px solid #b8ecc4;
	color:#06731c;
}
.bccp-profile-actions{
	position:sticky;
	bottom:14px;
	z-index:5;
	padding:14px;
	margin-top:4px;
	background:rgba(255,255,255,.92);
	backdrop-filter:blur(8px);
	border:1px solid #e2ece8;
	border-radius:18px;
	box-shadow:0 12px 30px rgba(7,32,41,.08);
}
.bccp-profile-actions .bccp-btn{
	min-width:180px;
}
@media(max-width:1100px){
	.bccp-form-grid--profile{grid-template-columns:repeat(2,minmax(0,1fr));}
	.bccp-profile-field--bc_urlsite,
	.bccp-profile-field--bc_nombre_logradouro{grid-column:1/-1;}
}
@media(max-width:700px){
	.bccp-profile-edit--refined{padding:18px;}
	.bccp-profile-group{padding:16px;border-radius:18px;}
	.bccp-form-grid--profile{grid-template-columns:1fr;}
	.bccp-profile-field--bc_urlsite,
	.bccp-profile-field--bc_nombre_logradouro,
	.bccp-profile-field--bc_nombre_complemento{grid-column:1/-1;}
	.bccp-profile-actions{position:static;padding:0;border:0;box-shadow:none;background:transparent;}
	.bccp-profile-actions .bccp-btn{width:100%;}
}

/* v1.8.5 - Perfil: segurança / alteração de senha */
.bccp-profile-group--security{
	background:linear-gradient(180deg,#ffffff,#fbfdfc);
}
.bccp-security-card{
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:18px;
	padding:18px;
	border:1px solid #e2ece8;
	border-radius:18px;
	background:#f8fbfa;
}
.bccp-security-card strong{
	display:block;
	font-size:16px;
	font-weight:900;
	color:#061b3a;
	margin-bottom:5px;
}
.bccp-security-card p{
	margin:0;
	font-size:14px;
	line-height:1.45;
	color:#405276;
}
.bccp-btn--password{
	white-space:nowrap;
}
@media(max-width:700px){
	.bccp-security-card{
		align-items:stretch;
		flex-direction:column;
	}
	.bccp-security-card .bccp-btn{
		justify-content:center;
		width:100%;
	}
}


/* v1.8.9 - Import taxonomy reference list */
.bccp-taxonomy-reference-card{
	background:#fff;
	border:1px solid rgba(0,119,33,.14);
	border-radius:18px;
	box-shadow:0 12px 32px rgba(16,24,40,.06);
	padding:22px;
	margin:0 0 18px;
}
.bccp-taxonomy-reference-card__head{max-width:820px;margin-bottom:16px}
.bccp-taxonomy-reference-card__head h2{margin:8px 0 8px;color:#101828}
.bccp-taxonomy-reference-card__head p{margin:0;color:#475467}
.bccp-taxonomy-reference-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
.bccp-taxonomy-reference-list{background:#f8faf8;border:1px solid rgba(0,119,33,.10);border-radius:14px;padding:14px;min-width:0}
.bccp-taxonomy-reference-list h3{margin:0 0 4px;font-size:1rem;color:#101828}
.bccp-taxonomy-reference-list small{display:block;margin-bottom:10px;color:#64748b;font-weight:700}
.bccp-taxonomy-reference-table-wrap{overflow-x:auto;border-radius:12px;border:1px solid #e5e7eb;background:#fff}
.bccp-taxonomy-reference-table{width:100%;border-collapse:collapse;font-size:.88rem}
.bccp-taxonomy-reference-table th,.bccp-taxonomy-reference-table td{padding:9px 10px;border-bottom:1px solid #eef2f7;text-align:left;vertical-align:top}
.bccp-taxonomy-reference-table tr:last-child td{border-bottom:0}
.bccp-taxonomy-reference-table th{background:#f9fafb;color:#344054;font-weight:800}
.bccp-taxonomy-reference-table code{white-space:nowrap;color:#0f5132;background:#ecfdf3;border-radius:7px;padding:2px 6px}
.bccp-taxonomy-reference-empty{margin:10px 0 0;color:#64748b}
@media(max-width:980px){.bccp-taxonomy-reference-grid{grid-template-columns:1fr}}


/* v1.8.10 - Import UX */
.bccp-taxonomy-reference-toggle{
	background:#fff;
	border:1px solid rgba(0,119,33,.14);
	border-radius:18px;
	box-shadow:0 12px 32px rgba(16,24,40,.05);
	padding:0;
	margin:0 0 18px;
	overflow:hidden;
}
.bccp-taxonomy-reference-toggle > summary{
	cursor:pointer;
	list-style:none;
	padding:18px 22px;
	font-weight:800;
	color:#101828;
	display:flex;
	align-items:center;
	justify-content:space-between;
	gap:12px;
}
.bccp-taxonomy-reference-toggle > summary::-webkit-details-marker{display:none}
.bccp-taxonomy-reference-toggle > summary::after{
	content:'+';
	width:28px;
	height:28px;
	border-radius:999px;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	background:#ecfdf3;
	color:#007721;
	font-weight:900;
}
.bccp-taxonomy-reference-toggle[open] > summary::after{content:'–'}
.bccp-taxonomy-reference-toggle .bccp-taxonomy-reference-card{
	border:0;
	border-top:1px solid rgba(0,119,33,.10);
	border-radius:0;
	box-shadow:none;
	margin:0;
}


/* v1.8.11 - link de visualização completa da cota */
.bccp-sr-only{
	position:absolute!important;
	width:1px!important;
	height:1px!important;
	padding:0!important;
	margin:-1px!important;
	overflow:hidden!important;
	clip:rect(0,0,0,0)!important;
	white-space:nowrap!important;
	border:0!important;
}
.bccp-cotas-table-actions .bccp-btn--icon{
	min-width:38px;
	width:38px;
	padding:7px 0;
	justify-content:center;
	font-size:15px;
	line-height:1;
}
.bccp-cota-view-link{
	text-decoration:none!important;
}
.bccp-cota-view-link:hover,
.bccp-cota-view-link:focus{
	text-decoration:none!important;
}

/* v1.8.12 - exportacao Excel das cotas e reimportacao para atualizar por codigo interno */


/* v1.8.18 — Lead status + pending bell */
.bccp-lead-status{
	display:inline-flex;
	align-items:center;
	width:max-content;
	padding:4px 9px;
	border-radius:999px;
	font-size:11px;
	font-weight:800;
	line-height:1;
	border:1px solid rgba(15,23,42,.12);
	background:#f8fafc;
	color:#334155;
	margin-left:8px;
}
.bccp-lead-status--novo{background:#ecfdf5;color:#15803d;border-color:rgba(34,197,94,.28)}
.bccp-lead-status--visto{background:#eff6ff;color:#1d4ed8;border-color:rgba(59,130,246,.25)}
.bccp-lead-status--contatado{background:#f1f5f9;color:#64748b;border-color:rgba(100,116,139,.22)}
.bccp-lead-row.is-new{box-shadow:inset 4px 0 0 #22c55e, 0 12px 30px rgba(15,23,42,.06)}
.bccp-lead-row.is-contacted{opacity:.78}
