body {

	overflow-x: hidden;
	box-sizing: border-box
}

#scrollUp {
  bottom: 20px;
  left: 20px;
  width: 38px; /* Width of image */
  height: 38px; /* Height of image */
  background: url(../images/top.png) no-repeat;
}


/* Start of Booking Form*/
 
  .bookcontainer {
	max-width: 600px;
	margin: 0 auto;
	background: #ffffff;
	padding: 20px;
	border-radius: 8px;
	margin-top: 10px;
	margin-bottom: 10px;
  }
  
  h1 {
	text-align: center;
	color: #333;
  }
  
  .whatsapp-form {
	margin-top: 20px;
  }
  
  .whatsapp-form input,
  .whatsapp-form textarea {
	width: 100%;
	padding: 10px;
	margin-bottom: 10px;
	border: 1px solid #ccc;
	border-radius: 4px;
  }
  
  .whatsapp-form input::placeholder,
  .whatsapp-form textarea::placeholder {
	color: #666;
	opacity: 1;
  }
  
  .whatsapp-form input:focus::placeholder,
  .whatsapp-form textarea:focus::placeholder {
	color: #999;
  }
  
  .whatsapp-form button {
	background-color: #007BFF;
	color: #fff;
	border: none;
	padding: 10px 20px;
	border-radius: 4px;
	cursor: pointer;
	width: 100%;
  }
  
  .whatsapp-form button:hover {
	background-color: #025cbd;
  }
   
  .whatsapp-form {
    text-align: center; /* Centers the button horizontally */
}

.whatsapp-form bookbutton {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    width: auto; /* Ensures the button doesn't stretch to 100% width */
    margin: 0 auto; /* Centers the button horizontally */
	padding: 10px 100px 10px 100px ;
}
  
  
  .collapsible {
	background-color: #f8f9fa;
	color: #333;
	cursor: pointer;
	padding: 15px;
	width: 100%;
	border: 1px solid #ddd;
	text-align: left;
	outline: none;
	font-size: 16px;
	border-radius: 4px;
	margin-bottom: 10px;
	display: flex;
	justify-content: space-between;
	align-items: center;
  }
  
  .collapsible:after {
	content: '\002B'; /* Plus sign */
	font-weight: bold;
	margin-left: 5px;
  }
  
  .active:after {
	content: '\2212'; /* Minus sign */
  }
  
  .test-content,
  .package-content {
	padding: 0 15px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	background-color: white;
	border-left: 1px solid #ddd;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	border-radius: 0 0 4px 4px;
  }
  
  .test-options,
  .package-options {
	padding: 10px 0;
  text-align: left;
  }
  
  /* Adjust gap between checkbox and text */
  .test-options label,
  .package-options label {
	display: flex;
	align-items: center;
	gap: 10px; /* Adjust this value to control the gap */
	padding: 8px 0;
	cursor: pointer;
  }
  
  .test-options label:hover,
  .package-options label:hover {
	background-color: #f1f1f1;
	border-radius: 4px;
  }
  
  /* Checkbox Styling */
  input[type="checkbox"] {
	margin-right: 10px; /* Adjust this value to control the gap */
	width: 18px;
	height: 18px;
	accent-color: #007BFF;
	cursor: pointer;
	transition: accent-color 0.2s ease;
  }
  
 
  .test-list {
	margin-left: 20px;
  margin-top: -25px;
	padding: 5px 0;
	list-style-type: disc;
	color: #4b4b4b;
  }
  
  .test-list li {
	margin: 5px 0;
  }

  .payment-summary {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.payment-summary h3 {
    color: #2c3e50;
    margin-top: 0;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
}

.payment-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

.payment-table th {
    background-color: #3498db;
    color: white;
    padding: 10px;
    text-align: left;
}

.payment-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.payment-table tr:last-child td {
    border-bottom: none;
}

.discount-row td {
    color: #27ae60;
    text-align: left;
}

.total-row td {
    font-size: 1.1em;
    background-color: #e8f4fc;
}

#finalPayment {
    color: #e74c3c;
    font-weight: bold;
    text-align: left;
}
/* End of Booking Form*/



/* Payment Toggle Styles */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

.payment-method {
  margin: 20px 0;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 5px;
}

.payment-toggle {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.razorpay-payment-button {
  background-color: #2d8ff0;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.razorpay-payment-button:hover {
  background-color: #1a73e8;
}

.book-button {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  text-align: center;
  margin-top: 15px;
}

.book-button:hover {
  background-color: #218838;
}

.discount-code {
  gap: 10px;
  margin: 15px 0;
}

.discount-code input {
  flex: 1;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.discount-code button {
  padding: 10px 15px;
  background-color: #17a2b8;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.payment-details {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  margin: 15px 0;
}

.payment-details p {
  margin: 5px 0;
  font-size: 16px;
}

#totalPrice, #discountAmount, #finalPayment {
  font-weight: bold;
}