/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeIn 0.4s ease;
}

/* Popup Box */
.popup-box {
  background: #fff;
  width: 100%;
  max-width: 95%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  animation: scaleIn 0.4s ease;
}

/* Close Button */
.popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 26px;
  cursor: pointer;
  color: #333;
}

/* Content Layout */
.popup-content {
  display: flex;
  flex-wrap: nowrap;
}

/* Left Image */
.popup-left {
  width: 60%;
  background: #f8f8f8;
}

.popup-left img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Right Form */
.popup-right {
  width: 45%;
  padding: 30px;
}

.popup-right h4 {
  font-weight: 700;
  margin-bottom: 20px;
}

/* Buttons */
.popup-actions {
  display: flex;
  gap: 10px;
}

.form-select {
  padding: 12px 14px;
  border-radius: 8px;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.9);
  }
  to {
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .popup-left {
    display: none;
  }

  .popup-right {
    width: 100%;
  }
}

.pop-btn {
  background: #fe543d;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
}
