#map-component {
	display: none;
}
#campus-map {
	height: 560px;
	overflow: hidden;
}
.map-card {
	overflow: hidden;
	border: none;
}
.map-header-bar {
	background: #f8f9fc;
	color: #1f2434;
	padding: 12px 18px;
	font-weight: 600;
	font-size: 14px;
	border-bottom: 1px solid #e4e7ec;
	position: relative;
	z-index: 1000;
}
.map-day-tabs {
	display: flex;
	gap: 6px;
	padding: 8px 14px;
	background: #f8f9fc;
	border-bottom: 1px solid #e4e7ec;
	flex-wrap: wrap;
	position: relative;
	z-index: 1000;
}
.map-day-tab {
	padding: 3px 13px;
	border-radius: 2px;
	border: 1px solid #e4e7ec;
	background: #fff;
	font-size: 12px;
	font-weight: 500;
	color: #3a3f52;
	cursor: pointer;
}
.map-day-tab:hover {
	background: #eef0f6;
}
.map-day-tab.active {
	background: #1f2434;
	color: #fff;
	border-color: #1f2434;
}
.map-travel-bar {
	background: #f8f9fc;
	border-top: 1px solid #e4e7ec;
	padding: 10px 16px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	font-size: 12px;
	color: #6b7694;
}
.map-travel-label {
	font-weight: 600;
	color: #3a3f52;
}
.map-travel-content {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.leaflet-popup-content-wrapper {
	border-radius: 2px !important;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}
.leaflet-popup-tip-container {
	margin-top: -1px;
}
.map-travel-badge {
	display: inline-flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid #e4e7ec;
	border-radius: 2px;
	padding: 5px 10px;
	font-size: 12px;
	font-weight: 500;
	color: #3a3f52;
	gap: 2px;
}

@media (min-width: 992px) {
	#map-component {
		display: block;
	}
}
