.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  
  display: none;
  justify-content: center;
  align-items: flex-start; /* popup zawsze u góry */
  
  padding-top: 30px; /* stałe odsunięcie od górnej krawędzi */
  padding-bottom: 40px;

  z-index: 1000;
  overflow-y: auto; /* przewijanie, jeśli popup zbyt wysoki */
}

.popup-content {
  background: #fff;
  border-radius: 10px;
  position: relative;
  width: 90%;
  max-width: 1000px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  padding: 2rem;

  margin: 0 auto; /* wyśrodkowanie poziome */
}



.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.6rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

textarea {
  resize: vertical;
}