.popup { display: none; }

.popup-btn {
  cursor: pointer;
}

.popup.active {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.popup-overlay {
  position: fixed;
  inset: 0;
  /*background: rgba(0,0,0,0.5);*/
  background: rgb(0 0 0 / 21%);
  cursor: pointer;
  z-index: 1001;
}

.popup-content {
    position: absolute;
    background: #fff;
    border-radius: 8px;
    padding: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    z-index: 1002;
    box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  cursor: pointer;
  font-size: 18px;
  color: #666;
}

.popup-close:hover {
  color: #000;
}