/* map css */

/* --------------- Member Loction Map -------------------------- */

body.locationMap #map {
  margin-top: 10px;
  width: 100%;
  height: 80vh;
  z-index: 70;
}

body.locationMap #contentMap {
  width: 100%;
  margin: 0 auto;
}

body.locationMap h3 {
  text-align: center;
}

body.locationMap #buttons {
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

body.locationMap .button {
  background: lightblue;
  color: black;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
}

body.locationMap #loadingMap {
  margin-top: 10px;
}

body.locationMap #info {
  margin: 10px 0;
}

/* ---- search for member */

#memberSearchWrap {
    display: inline-block;
    position: relative;
    margin-left: 12px;
}

#memberSearch {
    padding: 8px 10px;
    min-width: 240px;
    border: 1px solid #bbb;
    border-radius: 6px;
}

#memberSearchResults {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 260px;
    max-height: 260px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #bbb;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    margin-top: 4px;
}

.memberSearchItem {
    padding: 8px 10px;
    cursor: pointer;
    line-height: 1.4;
}

.memberSearchItem:hover {
    background: #f2f2f2;
}