/* Tło popupu */
.overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

/* Kontener popupu */
.popup-box {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 20px;
  max-width: 600px;
  width: 90%;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  z-index: 1000;
}

/* Lewa część: zdjęcie + imię i nazwisko */
.popup-left {
  flex: 1 1 40%;
  text-align: center;
}

.popup-left img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.popup-left .name {
  margin-top: 10px;
  font-weight: bold;
  font-size: 1.1em;
}

/* Prawa część: treść */
.popup-right {
  flex: 1 1 60%;
  padding-left: 15px;
}

/* Przycisk zamknięcia */
.close-btn {
  position: absolute;
  top: 10px; right: 10px;
  background: #0078D4;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

/* Responsywność */
@media (max-width: 600px) {
  .popup-box {
    flex-direction: column;
    text-align: center;
  }

  .popup-right {
    padding-left: 0;
    margin-top: 15px;
  }
}
