    #map {
        height: 350px;
        width: 100%;
        border-radius: 12px;
        margin-top: 15px;
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.18);
        z-index: 1;
    }
    .map-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 8px;
    }
    .locate-btn {
        padding: 6px 12px;
        background: linear-gradient(135deg, #6e8efb, #a777e3);
        color: white;
        border: none;
        border-radius: 6px;
        cursor: pointer;
        font-size: 0.85rem;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: all 0.3s ease;
    }
    .locate-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(110, 142, 251, 0.3);
    }
    .gps-hint {
        font-size: 0.8rem;
        color: #666;
        margin-top: 5px;
    }


.leadership {
  padding: 1.5rem;
}

.cordinators {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 2rem auto;
  padding: 1.5rem;
  gap: 2rem;
  border-radius: 10px;
}

.mapdiv {
  flex: 1;
  min-width: 400px;
  width: 50%;
  height: auto;
  margin: 0 auto;
  text-align: center;
}

.outputdiv {
  border-radius: 10px;
  min-height: 400px;
  overflow: auto;
  width: 65%;
  margin: 0 auto;
}

.mapdiv path {
  fill: #eaeded;
  stroke: #36011f;
  stroke-width: 1px;
  transition: fill 0.3s;
}

.mapdiv polyline {
  fill: #eaeded;
  stroke: #36011f;
  stroke-width: 1px;
  transition: fill 0.3s;
}

.mapdiv path:hover {
  fill: #36011f;
  stroke: #ffffff;
  stroke-width: 1;
}

.mapdiv polyline:hover {
  fill: #36011f;
  stroke: #ffffff;
  stroke-width: 1;
}


text {
  text-anchor: middle;
  fill: #36011f;
}

line {
  color: #090;
  stroke-width: 25.714285714286;
}

.jtooltip {
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

g.jtooltip:not(.css) {
  fill: currentColor;
}

g.jtooltip rect {
  fill: #ffffff;
}

path:focus+g.jtooltip.css,
path:hover+g.jtooltip.css {
  opacity: 1;
  z-index: 2;
}

polygon:focus+g.jtooltip.css,
polygon:hover+g.jtooltip.css {
  opacity: 1;
  z-index: 2;
}

polyline:focus+g.jtooltip.css,
polyline:hover+g.jtooltip.css {
  opacity: 1;
  z-index: 2;
}

svg line {
  stroke: blue;
  stroke-width: 100%;
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  animation: dashline 1s linear alternate forwards;
  animation-name: dashline;
}

line:hover {
  opacity: 0.5;
  stroke: #090 !important;
  stroke-width: 8;
}