#popupForm {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background: white;
  z-index: 1000;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Overlay (dim background) */
#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  z-index: 10;
}

#popupForm button {
  margin-top: 10px;
  padding: 10px 20px;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.hidden {
  display: none;
}

.form-container {
  width: 512px;
}

.cross-removel-icon {
  position: absolute;
  top: 0px;
  right: 10px;
  cursor: pointer;
  font-size: 24px;
  color: #000;
}

@media (max-width: 768px) {
  .form-container {
    width: 100%;
  }
  #popupForm {
    width: 100%;
  }
}
