#mrm-restaurant-map-container {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	background: #ccaea8;
	/* Matching the screenshot theme */
	padding: 40px;
	font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
	color: #fff;
}

.mrm-map-wrapper {
	flex: 1 1 300px;
	position: relative;
	align-self: flex-start;
}

#mauritius-map-svg {
	width: 100%;
	height: auto;
	filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}

.mrm-sidebar {
	flex: 1 1 300px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.mrm-sidebar h2 {
	font-size: 2rem;
	margin-bottom: 20px;
	color: #fff;
}

.mrm-sidebar p {
	font-size: 1.1rem;
	margin-bottom: 30px;
	line-height: 1.6;
	opacity: 0.9;
}

.mrm-filters {
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.mrm-filters input,
.mrm-filters select {
	padding: 15px;
	border-radius: 30px;
	/* Pill shape */
	border: none;
	width: 100%;
	font-size: 1rem;
	outline: none;
	background: #fff;
	color: #555;
	appearance: none;
	background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right 1rem center;
	background-size: 1em;
}

.mrm-filters input {
	background-image: none;
	/* No arrow for text input */
}

/* Pins */
.mrm-pin {
	position: absolute;
	width: 20px;
	height: 20px;
	background: #fff;
	border: 3px solid #D0B0AA;
	border-radius: 50%;
	cursor: pointer;
	transform: translate(-50%, -50%);
	transition: transform 0.2s;
	z-index: 10;
}

.mrm-pin:hover {
	transform: translate(-50%, -50%) scale(1.3);
	background: #FFD700;
}

/* Modal */
.mrm-modal {
	position: absolute;
	width: 280px;
	background: #fff;
	border-radius: 8px;
	padding: 15px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	color: #333;
	z-index: 99999;
	/* Ensure high z-index */
	display: none;
	pointer-events: none;
	font-size: 14px;
	line-height: 1.4;
	border: 1px solid rgba(0, 0, 0, 0.1);
}

.mrm-modal .mrm-modal-thumb {
	width: 100%;
	height: 140px;
	overflow: hidden;
	border-radius: 6px;
	margin-bottom: 10px;
}

.mrm-modal img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.mrm-modal h3 {
	margin: 0 0 5px 0;
	font-size: 1.1rem;
	color: #D0B0AA;
}

.mrm-modal .mrm-excerpt {
	font-size: 0.9rem;
	color: #666;
	margin-bottom: 10px;
}

.mrm-modal .mrm-meta {
	font-size: 0.8rem;
	color: #999;
}