.map-section {
	margin: 20px 0;
	background: #f8f9fa;
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.map-title {
	color: #2c3e50;
	margin-bottom: 15px;
	font-weight: 600;
}

.map-controls {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 15px;
	flex-wrap: wrap;
	gap: 15px;
}

 .map-legend {
	background: white;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
	flex: 1;
	min-width: 250px;
}

.map-legend h4 {
	margin: 0 0 10px 0;
	color: #34495e;
	font-size: 14px;
	font-weight: 600;
}

.legend-item {
	display: flex;
	align-items: center;
	margin: 8px 0;
	font-size: 13px;
	color: #555;
}

.legend-color {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin-right: 10px;
	border: 2px solid white;
	box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.legend-color.national_manager { background-color: #e74c3c; }
.legend-color.regional_manager { background-color: #f39c12; }
.legend-color.judge { background-color: #9b59b6; }
.legend-color.instructor { background-color: #3498db; }
.legend-color.trainer { background-color: #27ae60; }
.legend-color.snaq { background-color: #34495e; }



#staffMap {
	height: 500px;
	width: 100%;
	border-radius: 8px;
	border: 2px solid #e9ecef;
	z-index: 1;
}


/* Stili per i popup della mappa */
.leaflet-popup-content {
	margin: 8px 12px;
	line-height: 1.4;
	min-width: 220px;
}

.popup-content {
	position: relative;
	min-height: 70px;
}

.popup-text-content {
	margin-right: 50px; /* Spazio per avatar */
}

.popup-header {
	font-weight: bold;
	color: #2c3e50;
	margin-bottom: 6px;
	font-size: 15px;
}

.popup-info {
	color: #555;
	margin-bottom: 4px;
	font-size: 13px
}

.popup-location {
	color: #7f8c8d;
	font-style: italic;
	margin-bottom: 10px;
	font-size: 12px/
}

.popup-roles {
	clear: both;
	margin-top: 8px;
	line-height: 1.8;
	width: 100%;
}

.role-badge {
	min-width: 24px;
	height: 24px;
	border-radius: 12px;
	color: white;
	font-size: 10px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 2px solid white;
	padding: 0 4px;
}

.role-badge.national_manager { background-color: #e74c3c; }
.role-badge.regional_manager { background-color: #f39c12; }
.role-badge.judge { background-color: #9b59b6; }
.role-badge.instructor { background-color: #3498db; }
.role-badge.trainer { background-color: #27ae60; }
.role-badge.snaq { background-color: #34495e; }


.popup-avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	/*position: absolute;*/
	top: 0;
	right: 0;
	border: 2px solid #bdc3c7;
}



/* Responsive */
@media (max-width: 768px) {
	.map-controls {
		flex-direction: column;
	}
	
	.map-legend {
		min-width: auto;
	}
	
	#staffMap {
		height: 400px;
	}
}