.popup {
  position: absolute;
  display: none;
  background-color: white;
  padding: 20px;
  border: 2px solid #333;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  width: 400px;
  max-width: 90%;
  top: 100px; /* You can adjust this */
  left: 50%;
  transform: translateX(-50%);
}

/* Close button inside the popup */
.popup-close {
  float: right;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
}

/* Header */
.popup-header {
  font-weight: bold;
  margin-bottom: 10px;
}

/* URL text */
.popup-text {
  word-wrap: break-word;
  font-family: monospace;
}

.lessToggle {
  font-size: 0.9em;
  margin-left: 10px;
  color: #0077cc;
  cursor: pointer;
  text-decoration: underline;
}
