@charset "utf-8";

/* Popup container */
#sharePopup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 12000;
  align-items: center;
  justify-content: center;
}

/* Inner content box */
.popupContent {
  position: relative;
  background: transparent;
  padding: 40px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Close button centered at top */
#closePopup {
  position: absolute;
  top: 0px; /* move it higher (was 10px before) */
  left: 50%;
  font-size: 48px; /* increase size (was 30px before) */
  transform: scale(2, 2);
  transform: translateX(-50%);
  font-size: 30px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 10100;
  padding: 0;
}

#closePopup img {
  width: 32px; /* Adjust the size as needed */
  height: auto;
  display: block;
}

#share-it-button {
  padding: 0;
  margin: 0 0 52px 0;
  align-items: center;
  display: inline-block;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;    
  font-size: 24px; 
  text-align: center;
  justify-content: center;
}
