.content-wrapper {
	display: flex;
	flex-direction: column;
	gap: 20px;
	background: white;
	border-radius: 12px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	overflow: hidden;
	margin-bottom: 45px;
}

.link-evropochta a {
	color: #0e4e73;
	text-decoration: underline!important;
}

.link-evropochta {
	font-size: 14px;
}

@media (min-width: 992px) {
	.content-wrapper {
		flex-direction: row;
		height: 600px;
	}
}

.filters-section {
	padding: 25px;
	background: #f8f9fa;
	border-right: 1px solid #e9ecef;
}

@media (min-width: 992px) {
	.filters-section {
		width: 320px;
		flex-shrink: 0;
	}
}

.search-box {
	position: relative;
	margin-bottom: 20px;
}

.search-box input {
	width: 100%;
	padding: 14px 20px 14px 45px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 16px;
	outline: none;
	transition: border-color 0.3s;
}

.search-box input:focus {
	border-color: #3498db;
	box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
}

.search-box i {
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	color: #7f8c8d;
}

.cities-filter {
	margin-bottom: 25px;
}

.cities-filter h3 {
	margin-bottom: 15px;
	font-size: 18px;
	color: #037bac;
	font-weight: 600;
	padding-bottom: 10px;
	border-bottom: 2px solid #037bac;
}

.city-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.city-btn {
	padding: 10px 15px;
	background: white;
	border: 1px solid #ddd;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s;
	font-size: 14px;
}

.city-btn:hover {
	background: #edf2f7;
}

.city-btn.active {
	background: #037bac;
	color: white;
	border-color: #037bac;
}

.cities-list {
	max-height: 300px;
	overflow-y: auto;
}

.cities-list h3 {
	margin-bottom: 15px;
	font-size: 18px;
	color: #037bac;
	font-weight: 600;
	padding-bottom: 10px;
	border-bottom: 2px solid #037bac;
}

.city-item {
	padding: 12px 15px;
	margin-bottom: 8px;
	background: white;
	border-radius: 6px;
	cursor: pointer;
	transition: all 0.3s;
	border-left: 3px solid transparent;
}

.city-item:hover {
	background: #e6f2cd;
}

.city-item.active {
	    background: #e6f2cd;
    border-left: 3px solid #b9ff2e;
	font-weight: bold;
}

.map-section {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
}

#map {
	flex-grow: 1;
	min-height: 300px;
	z-index: 1;
}

.locations-list {
	padding: 20px;
	border-top: 1px solid #e9ecef;
	max-height: 250px;
	overflow-y: auto;
}

@media (min-width: 992px) {
	.locations-list {
		max-height: 200px;
	}
}

.locations-list h3 {
	margin-bottom: 15px;
	color: #037bac;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 22px;
}

.location-count {
	background: #037bac;
	color: white;
	padding: 2px 10px;
	border-radius: 20px;
	font-size: 14px;
}

.office-item {
	padding: 15px;
	border-bottom: 1px solid #efefef;
	transition: background 0.3s;
	cursor: pointer;
}

.office-item:hover {
	background: #e6f2cd;
}

.office-item.active {
	background: #ffeceb;
}

.office-number {
	display: inline-block;
	background: #037bac;
	color: white;
	font-size: 12px;
	padding: 4px 10px;
	border-radius: 12px;
	margin-right: 10px;
}

.office-address {
	font-weight: 600;
	color: #037bac;
	margin-bottom: 5px;
	font-size: 16px;
}

.office-details {
	color: #656f70;
	font-size: 14px;
}

.no-results {
	text-align: center;
	padding: 30px;
	color: #7f8c8d;
}

.no-results i {
	font-size: 50px;
	margin-bottom: 15px;
	color: #ddd;
}

.balloon-title {
	font-weight: bold;
	margin-bottom: 5px;
	font-size: 16px;
}

.balloon-address {
	color: #666;
	font-size: 14px;
}

@media (max-width: 768px) {
	.city-buttons {
		overflow-x: auto;
		padding-bottom: 10px;
	}
	
	.city-btn {
		flex-shrink: 0;
	}
}