
  /* General styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* Button to open the top layer */
#showTopLayer {
  margin: 20px;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
}

.contactOption {
    font-size: 16px;
    font-weight: bold;
    padding-top: 6px;

}

/* Overlay styling */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Hidden class for hiding the overlay */
.hidden {
  display: none;
}

/* Top layer (modal) styling */
#topLayer {
  position: absolute;
  width:80%;
  max-width: 600px;
  background: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  text-align: center;
}

/* Close button outside of the top layer */
#closeButton {
  /*position: absolute;*/
  top: calc(50% - 120px);
  right: calc(50% - 170px);
  background: #fff;
  color: #666;
  border: none;
  font-size: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10001;
}


/* Close button hover effect */
#closeButton:hover {
  background: #ccc;
}  
