#eln-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#eln-modal-overlay.eln--visible {
  display: flex;
}
.eln-modal {
  background: #fff;
  border-radius: 8px;
  max-width: 500px;
  width: 90%;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: left;
}
.eln-modal__title {
  margin-top: 0;
  font-size: 1.5rem;
}
.eln-modal__body {
  margin: 16px 0;
  line-height: 1.5;
}
.eln-modal__footer {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}
.eln-btn {
  padding: 8px 16px;
  font-size: 1rem;
  border-radius: 4px;
  border: 1px solid transparent;
  cursor: pointer;
}
.eln-btn--outline {
  background: transparent;
  border-color: #1e3a8a;
  color: #1e3a8a;
}
.eln-btn--primary {
  background: #1e3a8a;
  color: #fff;
  border-color: #1e3a8a;
}
