/* Container for the map and info box */
#maxwidth {
  max-width:1200px;
  margin:auto;
  padding: 50px;
}

#boxmap {
}
#florida-map-container {
  max-width: 60%;
  margin: 0 auto;
  position: relative;
}

/* Responsive SVG */
#florida-map {
  width: 100%;
  height: auto;
}

/* Styling for county paths */
#florida-map path {
  fill: #65bf48 !important;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: auto;
}

/* Hover effect for counties */
#florida-map path:hover {
  opacity: 0.8;
  cursor: pointer;
}

/* Floating county info box */
#county-info {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: mulish, sans-serif;
  font-size: 14px;
  pointer-events: none;
  z-index: 10;
  opacity: 0; /* initially hidden */
  transition: opacity 0.2s ease;
}

/* Circuit sections styling */
#circuit-sections {
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

#circuit-sections section {
  margin-bottom: 20px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 15px;
}

/* Responsive adjustments for circuit sections */
@media (max-width: 768px) {
  #circuit-sections section {
    padding: 10px;
  }
  
  #county-info {
    font-size: 12px;
    padding: 4px 8px;
  }
}

<style>
.countysection {
  transition: background-color 1s ease;
}
.highlight {
  background-color: yellow;
}
</style>