/* Small icon row (if used somewhere) */
.here-icon-container {
  display: flex;
  gap: 15px;
  padding: 10px;
}

.here-icon-container i {
  font-size: 30px;
  color: forestgreen;
  transition: transform 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
}

.here-icon-container i:hover {
  color: mediumseagreen;
  transform: translate(5px, 5px);
  cursor: pointer;
}

.icon-container {
    position: relative;
    justify-content: flex-start;
}

/* Shared icon bar style (header + footer) */
.icon-container {
  display: flex;
  gap: 15px;
  padding: 10px;
}

.icon-container i {
  font-size: 40px;
  color: forestgreen;
  transition: transform 0.3s ease, color 0.3s ease;
  position: relative;
  z-index: 1;
}

.icon-container i:hover {
  color: mediumseagreen;
  transform: translate(5px, 5px);
  cursor: pointer;
}

/* Remove hover background box for both */
.icon-container a:hover,
.icon-container button:hover {
  background: none !important;
}

/* Normalize button look for both */
.icon-container button {
  background: none;
  border: none;
  padding: 0;
}

/* QR button */
.qr-button {
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  cursor: pointer;
}

/* Overlay popup */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 2000;
}

.popup {
  position: relative;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.popup img {
  width: 300px;
  height: 300px;
}

.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: forestgreen;
  color: white;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  cursor: pointer;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close-btn:hover {
  background-color: mediumseagreen;
}