/*
Theme Name: Twenty Twenty-five Child
Theme URI: http://example.com/twenty-twenty-five-child/
Description: Twenty Twenty-five Child Theme
Author: François
Author URI: http://example.com
Template: twentytwentyfive
Version: 1.0.0
*/

/* Add your custom styles here */
#chantilly-map-interactive-wrapper {
  font-family: Arial, sans-serif;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

.map-container {
  position: relative;
  display: inline-block;
  border: 2px solid #ccc;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  max-width: 100%;
}

.map-container img {
  display: block;
  max-width: 100%;
  height: auto;
}

.overlay-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay-backdrop.visible {
  visibility: visible;
  opacity: 1;
}

.overlay-backdrop img {
  max-width: 90%;
  max-height: 90vh;
  height: auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
  cursor: pointer;
}
