.ccf-finder {
	max-width: 560px;
	margin: 0 auto;
	font-family: inherit;
}
.ccf-finder-label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	font-size: 14px;
}
.ccf-select-wrapper {
	position: relative;
}
.ccf-finder-input {
	width: 100%;
	box-sizing: border-box;
	padding: 12px 14px;
	font-size: 15px;
	border: 1px solid #d5d8de;
	border-radius: 10px;
	outline: none;
	transition: border-color .15s ease;
}
.ccf-finder-input:focus {
	border-color: #1e3a5f;
}
.ccf-finder-options {
	position: absolute;
	z-index: 20;
	top: calc(100% + 6px);
	left: 0;
	right: 0;
	max-height: 260px;
	overflow-y: auto;
	background: #fff;
	border: 1px solid #e2e4e8;
	border-radius: 10px;
	box-shadow: 0 8px 24px rgba(0,0,0,0.1);
	display: none;
}
.ccf-finder-options.ccf-open {
	display: block;
}
.ccf-finder-option {
	padding: 10px 14px;
	font-size: 14px;
	cursor: pointer;
}
.ccf-finder-option:hover,
.ccf-finder-option.ccf-active {
	background: #f0f4f9;
}
.ccf-finder-option-group {
	padding: 8px 14px 4px;
	font-size: 11px;
	text-transform: uppercase;
	letter-spacing: .4px;
	color: #999;
	font-weight: 700;
}

.ccf-result {
	margin-top: 18px;
}
.ccf-bubble {
	display: flex;
	align-items: center;
	gap: 20px;
	background: #fff;
	border-radius: 16px;
	padding: 20px 24px;
	box-shadow: 0 6px 20px rgba(0,0,0,0.08);
	opacity: 0;
	transform: translateY(6px);
	animation: ccf-fade-in .25s ease forwards;
}
@keyframes ccf-fade-in {
	to { opacity: 1; transform: translateY(0); }
}
.ccf-bubble-photo {
	width: 84px;
	height: 84px;
	border-radius: 50%;
	overflow: hidden;
	flex-shrink: 0;
	background: #f0f2f5;
	display: flex;
	align-items: center;
	justify-content: center;
}
.ccf-bubble-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.ccf-bubble-initials {
	font-weight: 700;
	color: #8a92a0;
	font-size: 18px;
}
.ccf-bubble-info {
	flex: 1;
	min-width: 0;
}
.ccf-bubble-name {
	font-family: Georgia, 'Times New Roman', serif;
	font-weight: 700;
	font-size: 20px;
	color: #1e2a3a;
	margin-bottom: 8px;
}
.ccf-bubble-fonction {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #e6f4ea;
	color: #1e6b3a;
	font-size: 13px;
	padding: 5px 12px 5px 10px;
	border-radius: 999px;
	margin-bottom: 10px;
}
.ccf-bubble-fonction svg {
	width: 14px;
	height: 14px;
	flex-shrink: 0;
}
.ccf-bubble-row {
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 7px 0;
}
.ccf-bubble-row-border {
	border-bottom: 1px solid #eee;
}
.ccf-bubble-contact-item {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
}
.ccf-bubble-icon {
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: #f0f2f5;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	color: #666;
}
.ccf-bubble-icon svg {
	width: 14px;
	height: 14px;
}
.ccf-icon-whatsapp-bg {
	background: #e6f4ea;
	color: #1e8a4a;
}
.ccf-bubble-row a,
.ccf-bubble-contact-item span {
	color: #1e2a3a;
	font-size: 14px;
	text-decoration: none;
}
.ccf-bubble-contact-item.ccf-whatsapp span {
	color: #1e8a4a;
}
.ccf-bubble-divider {
	width: 1px;
	align-self: stretch;
	background: #e5e5e5;
}
.ccf-empty-result {
	font-size: 14px;
	color: #888;
	padding: 10px 0;
}

@media (max-width: 480px) {
	.ccf-bubble {
		flex-direction: column;
		text-align: center;
	}
	.ccf-bubble-row,
	.ccf-bubble-fonction {
		justify-content: center;
	}
}
