/* Hekim arama + bölüm filtresi — Medinova BT, 2026-08-13 */

.medbt-filter {
	--medbt-accent: #0099ce;
	--medbt-ink: #1c1c1c;
	--medbt-line: #dfe4e8;
	max-width: 1170px;
	margin: 28px auto 6px;
	padding: 18px 20px;
	background: #fff;
	border: 1px solid var(--medbt-line);
	border-radius: 8px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
	box-sizing: border-box;
}

.medbt-filter-row {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: flex-end;
}

.medbt-field {
	display: flex;
	flex-direction: column;
	flex: 1 1 220px;
	min-width: 0;
	margin: 0;
}

.medbt-field .medbt-label {
	font-size: 13px;
	font-weight: 600;
	color: var(--medbt-ink);
	margin-bottom: 6px;
	letter-spacing: .2px;
}

.medbt-filter input[type="search"],
.medbt-filter select {
	width: 100%;
	height: 44px;
	padding: 0 12px;
	font-size: 15px;
	color: var(--medbt-ink);
	background: #fff;
	border: 1px solid var(--medbt-line);
	border-radius: 6px;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

.medbt-filter select {
	/* ok işareti (data URI — dış istek yok) */
	background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23555' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 34px;
}

.medbt-filter input[type="search"]:focus,
.medbt-filter select:focus,
.medbt-filter button:focus {
	outline: 2px solid var(--medbt-accent);
	outline-offset: 1px;
	border-color: var(--medbt-accent);
}

.medbt-filter button {
	height: 44px;
	padding: 0 18px;
	font-size: 15px;
	font-weight: 600;
	color: #fff;
	background: var(--medbt-accent);
	border: 1px solid var(--medbt-accent);
	border-radius: 6px;
	cursor: pointer;
	flex: 0 0 auto;
}

.medbt-filter button:hover { filter: brightness(.93); }

.medbt-filter button[hidden] { display: none; }

.medbt-count {
	margin: 12px 0 0;
	font-size: 14px;
	color: #5a6570;
	min-height: 20px;
}

.medbt-count strong { color: var(--medbt-ink); }

.medbt-empty {
	max-width: 1170px;
	margin: 10px auto 30px;
	padding: 26px 20px;
	text-align: center;
	color: #5a6570;
	background: #f7f9fa;
	border: 1px dashed var(--medbt-line);
	border-radius: 8px;
}

.medbt-empty a { color: var(--medbt-accent); }

/* hekim detay sayfası: sonuçlar hekimin kendi içeriğinin üstünde listelenir,
   araya ince bir ayraç konur ki "aranan hekimler" ile "açık olan hekim" karışmasın */
.medbt-results-hekim {
	margin-bottom: 26px;
	padding-bottom: 10px;
	border-bottom: 1px solid #dfe4e8;
}

/* mobil */
@media (max-width: 767px) {
	.medbt-filter { margin: 18px 12px 4px; padding: 14px; }
	.medbt-filter-row { gap: 10px; }
	.medbt-field { flex: 1 1 100%; }
	.medbt-filter button { width: 100%; }
}

/* yazdırma: filtre çıktıda görünmesin */
@media print {
	.medbt-filter { display: none; }
}
