.service-centers {
	border-radius: 8px;
	overflow: hidden;
}

.service-centers__header {
	background: #32333480;
	color: #ffffff;
	padding: 24px;
}

.service-centers__title {
	margin: 0 0 16px;
	font-size: 32px;
	line-height: 1.2;
	font-weight: 600;
}

.service-centers__filters {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.service-centers__filter {
	min-width: 200px;
	flex: 1 1 200px;
}

.service-centers__select {
	width: 100%;
	height: 40px;
	border-radius: 4px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: rgba(0, 0, 0, 0.1);
	color: #ffffff;
	padding: 6px 10px;
}
.service-centers__select option{
   background: #32333480;
}

.service-centers__table-wrap {
	background: #32333480;
	padding: 24px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.service-centers__table {
	width: 100%;
	border-collapse: collapse;
	min-width: 720px;
}

.service-centers__table th,
.service-centers__table td {
	border: none;
	padding: 12px;
	text-align: left;
	vertical-align: middle;
	font-size: 14px;
	line-height: 1.4;
}

.service-centers__table th {
	background: #32333480;
	font-weight: 600;
}

.service-centers__table tbody tr {
	transition: background-color 0.2s ease;
}

.service-centers__table tbody tr:hover {
	background-color: rgba(255, 255, 255, 0.05);
}

.service-centers__row.is-hidden {
	display: none;
}

.service-centers__card.is-hidden {
	display: none;
}

.service-centers__empty {
	padding: 20px 24px;
	color: #666666;
}

/* Стили для адреса и телефона */
.service-centers__table td:nth-child(3) {
	line-height: 1.8;
}

/* Стили для ссылок в адресе */
.service-centers__table td:nth-child(3) a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
	display: block;
}

.service-centers__table td:nth-child(3) a:hover {
	color: #E86C03;
}

/* Разделение адреса и телефона на разные строки */
.service-centers__table td:nth-child(3) br {
	display: block;
	margin: 6px 0;
	line-height: 1.6;
}

/* Мобильная версия - карточки */
.service-centers__cards-mobile {
	display: none;
}

.service-centers__card {
	background: rgba(255, 255, 255, 0.05);
	border-radius: 8px;
	padding: 16px;
	margin-bottom: 16px;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.service-centers__card:hover {
	background-color: rgba(255, 255, 255, 0.1);
	transform: translateY(-2px);
}

.service-centers__card-name {
	font-weight: 600;
	font-size: 16px;
	margin-bottom: 8px;
	color: #ffffff;
}

.service-centers__card-address {
	margin-bottom: 8px;
	line-height: 1.6;
	color: #ffffff;
}

.service-centers__card-address a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease;
}

.service-centers__card-address a:hover {
	color: #E86C03;
}

.service-centers__card-worktime {
	margin-bottom: 8px;
	line-height: 1.6;
	color: #ffffff;
}

.service-centers__card-categories {
	line-height: 1.6;
	color: #ffffff;
}

/* Медиа-запросы для мобильных устройств */
@media (max-width: 768px) {
	.service-centers__table-desktop {
		display: none;
	}
	
	.service-centers__cards-mobile {
		display: block;
	}
	
	.service-centers__table-wrap, .service-centers__header {
		padding: 16px;
	}
}

@media (min-width: 769px) {
	.service-centers__cards-mobile {
		display: none !important;
	}
}

