
/* POPUP */
/* The popup (background) */
.popup {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Popup Content/Box */
.popup-content {
  background-color: #fefefe;
  background-image: url("../images/paper_texture.jpg");
  margin: 15% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 700px;
  font-family: 'Special Elite';
}

.popup-content p {
  font-family: "Special Elite";
  margin: 0 0 5px 0;
}

.popup-content .names {
  display: flex;
  align-items: center;
  margin: 0;
}

#side-icon {
  width: 64px;
  height: 64px;
  margin-right: 10px;
}

.popup-content #sciName,
.popup-content #commonName {
  display: block;
  margin: 0;
  line-height: 1.2;
}

.popup-content #commonName {
  font-weight: 700;
}


.popup-content #sciName {
  font-style: italic;
  font-size: 0.9em;
}

hr {
  border: none; 
  border-top: 2.25px dotted #424242;
  }

.popup-layout {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.bug-details{
  flex: 1;
}

#popupImg {
  max-width: 100%;
  max-height: 200px;
  display: block;
  margin-bottom: 10px;
}

.popup-content #bugMap {
  height: 250px;
  flex: 1.5;
}

/* The Close Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 500px) {
  .popup-layout {
    flex-direction: column;
  }
    #bugMap {
        display: none;
    }
}