/* Табы для врачей */
.doctors-tabs {
	margin-bottom: 30px;
}

.doctors-tabs__wrapper {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	border-bottom: 1px solid #e5e5e5;
	padding-bottom: 1px;
}

.doctors-tabs__btn {
	background: none;
	border: none;
	padding: 12px 24px;
	font-size: 16px;
	font-weight: 500;
	color: #666;
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
	border-radius: 4px 4px 0 0;
}

.doctors-tabs__btn:hover {
	color: #333;
	background-color: #f5f5f5;
}

.doctors-tabs__btn.active {
	color: #e31e24;
	background-color: transparent;
}

.doctors-tabs__btn.active::after {
	content: '';
	position: absolute;
	bottom: -1px;
	left: 0;
	right: 0;
	height: 2px;
	background-color: #e31e24;
}

@media (max-width: 768px) {
	.doctors-tabs__wrapper {
		flex-wrap: nowrap;
		overflow-x: auto;
		padding-bottom: 5px;
		-webkit-overflow-scrolling: touch;
	}

	.doctors-tabs__btn {
		white-space: nowrap;
		padding: 10px 16px;
		font-size: 14px;
	}
}