#map {
  width: 60vw;
  height: 60vh;
  max-width: 850px;
  max-height: 850px;
  z-index: 10;
}

li {
  list-style: none;
}
li:hover {
  cursor: pointer;
  text-decoration: underline;
  transform: scale(1.02);
}
.accordion-button {
  width: 100% !important;
  background-color: rgb(46, 44, 44);
  color: #fff;
  border-radius: 5px;
  border: none;
  height: 90%;
}
.accordion-collapse.show {
  max-width: 100%;
}

#branches-nav {
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  max-height: 70vh;
  overflow-y: auto;
}

/* dropdown Table */

#branches-table {
  border-collapse: collapse;
  width: 25vw;
  font-weight: 600;
  max-width: 100%;
  padding: 20px;
}

/* #branches-table tr {
  margin: 15px 0;
  line-height: 4em;
  border-bottom: 1px solid black;
  box-shadow: rgba(0, 0, 0, 0.16) 0px -3px 6px, rgba(0, 0, 0, 0.23) 0px -3px 6px;
  width: 100%;
} */

#branches-table td {
  padding: 0 20px;
}

#branches-table tr:hover {
  cursor: pointer;
  background-color: #ddd;
}

/* branch details table */

#branch-data {
  margin-left: 15px;
}

#details-table {
  border-collapse: collapse;
  width: 90%;
  font-size: 0.7em;
  padding-left: 5px;
  font-weight: 600;
}

#details:hover {
  background-color: white;
}

@media screen and (max-width: 768px) {
  #branches-nav {
    width: 100vw;
    position: relative;
  }
  #details-table {
    width: 100vw;
  }
  #branches-table {
    width: 100vw;
  }
}
