/* Button styling */
#bookSlotButton {
  padding: 10px 20px;
  background-color: #32de84;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

/* Popup iframe styling */
.iframe-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 500px;
  background-color: white;
  border: 2px solid#32de84;
  z-index: 1000;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

/* Overlay for background */
#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999;
}

/* Close button styling */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
  color: #32de84;
}

/* Form styling */
form {
  display: flex;
  flex-direction: column;
}

input,
select {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

input[type="submit"] {
  background-color: #32de84;
  color: white;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* Success message styling */
.success-message {
  display: none;
  color: #32de84;
  font-size: 18px;
  text-align: center;
  margin-top: 20px;
}
