.airok-map {
	margin: 20px 0;
	font-family: Helvetica, Arial, sans-serif;
}

.airok-map__toolbar {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 15px;
	padding: 18px 20px;
	background: #fffaf8;
	border: 1px solid rgba(0, 0, 0, 0.1);
	border-radius: 8px;
	box-shadow: 0 0 3px rgba(0, 0, 0, 0.35);
}

.airok-map__title {
	margin: 0;
	font-size: 18px;
	line-height: 1.3;
	color: #333;
}

.airok-map__filter {
	display: grid;
	gap: 6px;
	min-width: min(300px, 100%);
	font-size: 14px;
	color: #555;
}

.airok-map__filter select {
	min-height: 42px;
	border: 1px solid #dcdcde;
	border-radius: 6px;
	background: #fff;
}

.airok-map__single-category {
	font-size: 14px;
	font-weight: 600;
	color: #333;
}

.airok-map__canvas {
	width: 100%;
	min-height: 260px;
	border-radius: 12px;
	overflow: hidden;
}

.airok-map-error,
.airok-map__load-error {
	padding: 16px;
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	border-radius: 6px;
	color: #721c24;
	font-family: Helvetica, Arial, sans-serif;
}

.airok-map-info {
	min-width: 260px;
	padding: 6px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	color: #263238;
}

.airok-map-info h3 {
	margin: 0 0 8px;
	font-size: 17px;
	line-height: 1.25;
}

.airok-map-info p {
	margin: 0 0 8px;
	font-size: 13px;
	color: #607d8b;
}

.airok-map-info__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	margin: 10px 0 12px;
}

.airok-map-info__badge {
	display: inline-flex;
	align-items: center;
	min-height: 20px;
	padding: 2px 8px;
	border-radius: 999px;
	background: #777;
	color: #fff;
	font-size: 12px;
	font-weight: 600;
}

.airok-map-info__badge--yellow,
.airok-map-info__badge--pink {
	color: #1d2327;
}

.airok-map-info__badge--red { background: #d63638; }
.airok-map-info__badge--blue { background: #2271b1; }
.airok-map-info__badge--green { background: #008a20; }
.airok-map-info__badge--yellow { background: #f5d742; }
.airok-map-info__badge--purple { background: #7a3db8; }
.airok-map-info__badge--orange { background: #d9822b; }
.airok-map-info__badge--pink { background: #f4a7c6; }
.airok-map-info__badge--brown { background: #795548; }
.airok-map-info__badge--gray { background: #646970; }

.airok-map-info__directions {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 38px;
	border-radius: 6px;
	background: #2271b1;
	color: #fff !important;
	text-decoration: none;
	font-weight: 600;
}

@media (max-width: 700px) {
	.airok-map__toolbar {
		display: grid;
		align-items: stretch;
		padding: 15px;
	}
}
