.book {
  margin: 0;
  padding: 0;
}
.booking-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300vh;
  padding: 20px;
}

.promo-content {
  background-color: #fdfdfd; /* Light blue background for the promo content */
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  color: #333;
  max-width: 600px;
  margin-right: 20px;
  height: 80vh;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.promo-content h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.promo-content p {
  font-size: 16px;
  margin-bottom: 15px;
}

.promo-content img {
  width: 100%;
  border-radius: 10px;
}

.booking-form {
  background-color: #fdfdfd; /* Light blue background for the form */
  padding: 20px;
  border-radius: 10px;
  text-align: left;
  color: #333;
  max-width: 500px;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.booking-form h1 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 10px;
  color: #333;
}

.booking-form h2 {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  color: #17233e;
}

.booking-form label {
  display: block;
  margin-bottom: 5px;
  color: #333;
}

.booking-form input, .booking-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.booking-form select {
  background-color: #f9f9f9;
  font-size: 14px;
}

.booking-form select optgroup {
  font-style: normal;
  font-weight: bold;
  color: #0779f3;
}

.booking-form select option {
  padding: 5px;
  font-size: 14px;
  color: #333;
}

.slideshow-container {
  width: 500px;
  height: 450px;
  overflow: hidden;
  position: relative;
}

.slideshow-container img {
  width: 100%;
  height: auto;
}

/* Container for the thank you message */
.thankyou-container {
  max-width: 620px;
  margin: 50px auto;
  background-color: #027c7c;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.thankyou-container h2 {
  color: #fcfcfc;
  font-size: 24px;
  margin-bottom: 10px;
}

.thankyou-container p {
  color:#f8f5f5; 
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.thankyou-container a {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  background-color: #007bff;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.thankyou-container a:hover {
  background-color: #0056b3;
}

/*for each page*/

.forms-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}

.single-add-review, .booking-form {
  flex: 1;
}

.single-add-review{
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

    /* Spinner Styles */
    #loading-spinner {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 9999; /* Ensure it's on top */
    }

    /* Blurred Background Styles */
    #blur-background {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.8); /* White with opacity for blur effect */
        backdrop-filter: blur(5px); /* Apply blur */
        z-index: 9998; /* Just below the spinner */
        display: none; /* Initially hidden */
    }
