
.booking-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 999999;
}

.modal-content {
 display: flex;
  background-color: white;
  width: 80%; /* Keep width unchanged */
  max-width: 800px; /* Maintain the max width */
  height: 50%; /* Slightly increased height */
  max-height: 600px; /* Optional limit for height */
  border-radius: 10px;
  overflow: hidden;
}

.modal-left {
  flex: 1;
}

.offer-image {
  width: 100%;
  height: auto;
}

.modal-right {
  flex: 1;
  padding: 30px;
  background: linear-gradient(135deg, #000000, #FFD700); /* Black to gold gradient */
  color: white; /* Ensure text is readable on a dark background */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-left: 2px solid #FFD700; /* Gold separator line */
  border-radius: 0 10px 10px 0; /* Rounded edges on the right */
  box-shadow: inset 0 0 10px rgba(255, 215, 0, 0.5); /* Subtle glow effect */
}


.modal-right h2 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #FFD700; /* Gold color for the heading */
  text-shadow: 1px 1px 3px #000; /* Subtle shadow for better contrast */
  text-align: center;
}

#appointmentForm {
  width: 100%;
  max-width: 400px; /* Limit form width */
  display: flex;
  flex-direction: column;
  gap: 1px; /* Add spacing between form elements */
  padding: 0 20px; /* Add horizontal padding to prevent inputs from touching edges */
  box-sizing: border-box; /* Ensures padding doesn't exceed the container's width */
}

#appointmentForm label {
  font-size: 14px;
  font-weight: bold;
  color: #FFD700; /* Gold color for labels */
}

#appointmentForm input {
  padding: 4px 15px;
  height: 2.5rem;
  border: 1px solid #FFD700; /* Gold border for inputs */
  border-radius: 8px;
  font-size: 16px;
  color: #333;
  background-color: rgba(255, 255, 255, 0.9); /* Slightly transparent white */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
#appointmentForm .input-name{
    margin-bottom:2px;
}

#appointmentForm input:focus {
  border-color: #FFD700;
  box-shadow: 0 3px 6px rgba(255, 215, 0, 0.5);
  outline: none;
}

#appointmentForm .btn {
  background-color: #fcaf17; /* Gold button */
  color: black; /* Black text for contrast */
  font-size: 16px;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

#appointmentForm .btn:hover {
  background-color: #FFC107; /* Slightly lighter gold on hover */
  box-shadow: 0 4px 8px rgba(255, 215, 0, 0.5);
}

.booking-modal h2 {
  margin: 0 0 10px;
}

.booking-modal label {
  display: block;
  margin: 10px 0 5px;
}

.booking-modal input {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.booking-modal .btn {
  background-color: green;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}

.booking-modal .close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  cursor: pointer;
}
