.elw-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}

.elw-modal-content {
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 420px;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.elw-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.elw-title {
  font-size: 18px;
  margin: 0;
}

.elw-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.elw-modal-body {
  margin-top: 15px;
}

.elw-url {
  font-family: monospace;
  font-size: 14px;
  color: #333;
  margin-top: 10px;
  word-break: break-all;
}

.elw-modal-footer {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.elw-primary,
.elw-secondary {
  padding: 8px 16px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  font-weight: bold;
}

.elw-primary {
  background-color: #187498;
  color: #fff;
}

.elw-primary:hover {
  background-color: #2180a6; /* lighter blue */
}

.elw-secondary {
  background-color: #eee;
  color: #333;
}

.elw-secondary:hover {
  background-color: #f6f1f1; /* brighter grey */
}
