/**
 * Psychologist search form and results.
 */
.fmp-search-container {
	max-width: 1000px;
	margin: 0 auto;
	font-family: Inter, sans-serif;
	background: #fff;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.fmp-search-title {
	color: #045482;
	font-size: 32px;
	font-weight: 700;
	margin-bottom: 25px;
	text-align: center;
}
.fmp-search-row {
	display: flex;
	gap: 15px;
	margin-bottom: 15px;
	flex-wrap: wrap;
}
.fmp-search-field {
	flex: 1;
	min-width: 180px;
}
.fmp-search-field label {
	display: block;
	font-size: 13px;
	color: #6b7280;
	margin-bottom: 6px;
	font-weight: 600;
}
.fmp-search-field select,
.fmp-search-field input {
	width: 100%;
	height: 50px;
	padding: 12px 15px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 15px;
	box-sizing: border-box;
}
.fmp-search-submit {
	text-align: center;
	margin-top: 25px;
}
.fmp-search-submit button {
	background: #045482;
	color: #fff;
	border: none;
	padding: 14px 40px;
	font-size: 16px;
	font-weight: 700;
	border-radius: 6px;
	cursor: pointer;
}
.fmp-search-submit button:hover {
	background: #05abc1;
}
@media (max-width: 768px) {
	.fmp-search-row {
		flex-direction: column;
	}
}

/* Evaluation Type custom dropdown */
.custom-search-dropdown {
	position: relative;
	width: 100%;
	font-family: inherit;
}
.csd-trigger {
	width: 100%;
	height: 50px;
	padding: 12px 36px 12px 15px;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	font-size: 15px;
	color: #4b5563;
	background-color: #fff;
	cursor: pointer;
	display: flex;
	align-items: center;
	box-sizing: border-box;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 16px;
}
.csd-options {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	margin-top: 4px;
	z-index: 1000;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	max-height: 400px;
	overflow-y: auto;
}
.csd-option {
	padding: 10px 15px;
	cursor: pointer;
	color: #374151;
	font-size: 14px;
	border-bottom: 1px solid #f3f4f6;
}
.csd-option:hover {
	background-color: #f9fafb;
	color: #045482;
}
.csd-option.has-submenu {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-weight: 600;
	color: #045482;
	position: relative;
}
.csd-option.has-submenu::after {
	content: '›';
	font-size: 18px;
	font-weight: bold;
}
.csd-submenu {
	display: none;
	position: absolute;
	width: 280px;
	background: #fff;
	border: 1px solid #d1d5db;
	border-radius: 6px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	max-height: 400px;
	overflow-y: auto;
	z-index: 1100;
}
.csd-submenu::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: -10px;
	width: 10px;
	background: transparent;
}
@media (min-width: 769px) {
	.csd-submenu {
		position: fixed;
		left: auto;
		top: auto;
		margin: 0;
	}
	.csd-option.has-submenu.submenu-open .csd-submenu {
		display: block;
	}
}
@media (max-width: 768px) {
	.csd-submenu {
		position: static;
		width: 100%;
		box-shadow: none;
		border: none;
		border-left: 2px solid #045482;
		background: #f9fafb;
		margin: 0;
	}
	.csd-option.has-submenu.submenu-open .csd-submenu {
		display: block;
	}
	.csd-option.has-submenu.submenu-open::after {
		transform: rotate(90deg);
	}
}

#psychologist-search-results-container { max-width: 1200px; margin: 0 auto; padding: 20px; }
.psych-card { display: flex; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; }

/* Psych card right column: phone icon + action buttons */
.psych-card .fmp-btn { cursor: pointer; }
.psych-card .fmp-btn-email:hover { background: rgba(5,171,193,.12) !important; border-color: #05abc1 !important; color: #045482 !important; }
.psych-card .fmp-btn-view:hover { background: #05abc1 !important; border-color: #05abc1 !important; color: #fff !important; opacity: 0.95; }
