.chart_div1 {
  width: 100%; /* Ensure full-width container */
  height: 600px; /* Adjust height as needed */
  border-radius: 10px; /* Rounded corners for a modern look */
  overflow: hidden; /* Ensures no overflow issues */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow for depth */

/* height:10%; */
}

.chart_div1 p{
  line-height: normal;
}
#chart_div1 path:hover { fill: #ffffff;}
  		/* #chart_div1 rect:hover {fill:transparent;}
      #chart_div1 circle:hover {fill:#8ab83b;} */
      /* #chart_div1 circle:hover, path:hover { fill: #8ab83b;} */
/* Ensure the section and container use the full width */
.geocevi {
  padding: 20px;
    background-color: #f9f9f9; /* Light background color for the section */
}

.geocevi .main_title h2 {
  font-size: 45px;
  font-weight: 800;
  font-family: "Lato", sans-serif;
  text-transform: none;
  padding-top: 100px;
}

.geocevi .main_title p {
  font-size: 16px;
  font-family: "Lato", sans-serif;
  font-weight: normal;
  line-height: 24px;
  color: #797979;
  margin-bottom: 0px;
  padding-top: 50px;
}

.geocevi .containergeo {
  width: 100%;
  
  box-sizing: border-box; /* Includes padding and border in the element's total width */
}


.chart_div1 .tooltip-content {
  background-image: url('/cev24/img/childback.jpg');
  background-size: cover;
  background-position: center;
  padding: 20px;
  font-size: 18px;
  color: #333;
  max-width: 500px; /* Set a maximum width for uniformity */
  box-sizing: border-box; /* Include padding and border in the element’s total width and height */
  border-radius: 8px;
  backdrop-filter: blur(5px); /* Slight blur for contrast */
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  opacity: 0;
  transform: scale(0.95);
}

.tooltip-content p {
  margin: 0; /* Remove default margins to ensure consistent spacing */
  line-height: 1.6; /* Adjust line height for readability */
}

.tooltip-content p.title {
  font-weight: 500;
  font-size: 3.5em;
  color: #ff6b00;
}

.tooltip-content p.contact {
  font-weight: bold;
  color: #222;
}
/* Tooltip Interaction */
.google-visualization-tooltip {
  background: transparent;
  border: none;
  box-shadow: none;
}

.google-visualization-tooltip:hover .tooltip-content {
  opacity: 1;
  transform: scale(1);
}
#map-container {
  width: 100%;
  height: 600px; /* Adjust height as needed */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
}
#chart_div1 {
  width: 100%;
  height: 100%;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  #map-container {
    height: 400px;
  }

  .tooltip-content {
    font-size: 16px;
    padding: 15px;
    max-width: 300px;
  }

  .tooltip-content p.title {
    font-size: 1.8em;
  }
}