/* Rwanda Map SVG Path Styles */

/* Province colors with a blue gradient theme */
#RW-01 {
  fill: rgba(41, 128, 185, 0.4); /* Kigali City - brighter blue */
}

#RW-03 {
  fill: rgba(52, 152, 219, 0.3); /* Northern - medium blue */
}

#RW-02 {
  fill: rgba(26, 188, 156, 0.3); /* Eastern - blue-green */
}

#RW-04 {
  fill: rgba(41, 128, 185, 0.25); /* Western - light blue */
}

#RW-05 {
  fill: rgba(52, 152, 219, 0.35); /* Southern - medium-dark blue */
}

/* Hover effects for all provinces */
#RW-01:hover,
#RW-02:hover,
#RW-03:hover,
#RW-04:hover,
#RW-05:hover {
  fill-opacity: 0.7;
  stroke: #fff;
  stroke-width: 2;
  cursor: pointer;
}

/* Lake Kivu styling */
#lake-kivu {
  fill: rgba(52, 152, 219, 0.5);
  stroke: rgba(255, 255, 255, 0.8);
}

/* Country outline */
#rwanda-outline {
  fill: none;
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 2;
}

/* City markers */
circle {
  fill: #fff;
  stroke: #3498db;
  stroke-width: 1.5;
  transition: all 0.3s ease;
}

circle:hover {
  fill: #3498db;
  stroke: #fff;
  r: 6;
}

/* SVG size controls */
svg.rwanda-map-svg {
  max-width: 450px;
  max-height: 350px;
  margin: 0 auto;
  display: block;
}
