/**
 * Estilos para el mapa interactivo
 * Shortcode [mapa_interactivo]
 *
 * @package MadridCrece
 */

/* ============================================
   CONTENEDOR DEL MAPA INTERACTIVO
   ============================================ */

.mc-mapa-interactivo-container {
	width: 100%;
	margin: 20px 0;
	position: relative;
}

.mc-mapa-interactivo-iframe {
	width: 100%;
	border: none;
	border-radius: 8px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
	display: block;
}

.mc-mapa-interactivo-fullscreen-btn {
	position: absolute;
	bottom: 16px;
	right: 16px;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 4px 16px;
	background: #008D53;
	color: #ffffff;
	text-decoration: none;
	border-radius: 24px;
	font-size: 14px;
	font-weight: 500;
	font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	transition: all 0.2s ease;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	z-index: 10;
}

.mc-mapa-interactivo-fullscreen-btn:hover {
	background: #2d6bb8;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	color: #ffffff;
	text-decoration: none;
}

.mc-mapa-interactivo-fullscreen-btn:active {
	transform: translateY(0);
    color: #ffffff;
}

.mc-mapa-interactivo-fullscreen-btn svg {
	flex-shrink: 0;
	width: 20px;
	height: 20px;
}

.mc-mapa-interactivo-fullscreen-btn span {
	white-space: nowrap;
}

.mc-mapa-interactivo-empty,
.mc-mapa-interactivo-error {
	padding: 20px;
	background: #f5f5f5;
	border-radius: 8px;
	color: #666;
	text-align: center;
	margin: 20px 0;
}

.mc-mapa-interactivo-error {
	background: #fff3cd;
	color: #856404;
	border: 1px solid #ffc107;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
	.mc-mapa-interactivo-container {
		margin: 16px 0;
	}

	.mc-mapa-interactivo-iframe {
		border-radius: 4px;
	}

	.mc-mapa-interactivo-fullscreen-btn {
		bottom: 12px;
		right: 12px;
		padding: 8px 12px;
		font-size: 13px;
	}

	.mc-mapa-interactivo-fullscreen-btn svg {
		width: 18px;
		height: 18px;
	}
}

/* ============================================
   ACCESIBILIDAD
   ============================================ */

@media (prefers-reduced-motion: reduce) {
	.mc-mapa-interactivo-fullscreen-btn {
		transition: none;
	}

	.mc-mapa-interactivo-fullscreen-btn:hover {
		transform: none;
	}
}
