.form-control, input[type=email], input[type=number], input[type=password], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
  background-color: transparent;
  border: 2px solid #f4ca59;
  border-radius: 0;
  color: #8a8a9a;
  font-size: 16px;
  height: 50px;
  padding-bottom: 9px;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 10px;
  width: 100%;
}

.bordered-table {
  border-collapse: collapse;
}

.bordered-table td, th {
  border: 1px solid #999;
  padding: 0.5rem;
  text-align: left;
}

.text-align-R {
  text-align: right !important;
}

.text-transform-C {
  text-transform: capitalize;
}

.text-transform-U {
  text-transform: uppercase;
}

.radio-selection [type="radio"]{
  margin-left: -10px;
  opacity: 0;
}

.button {
background: transparent;
border: 2px solid #f4ca59;
color: #242327;
display: inline-block;
font-size: 16px;
line-height: 1;
padding: 15px 34px;
position: relative;
z-index: 2;
}

.button:hover {
background-color: #f4ca59;
border-color: #f4ca59 !important;
color: #fff !important;
}

.ds .button {
border-color: #fff;
color: #fff;
}

.button.disabled {
cursor: not-allowed;
opacity: 0.5;
}

/*For fancy tables*/
table.listing tr td {
  padding: 5px 30px;
  font-size: 21px;
}

.text-outline {
  color: black;
-webkit-text-stroke: 1px black;
-webkit-text-fill-color: white;
}


/*For the rating*/
.list-inline .rating a i {
  color: #f4ca59;
}

@media (min-width: 768px) {
  .desktop-icon-right-align {
      padding-right: 0px !important;
      text-align: right;
  }
}

.bordered-table {
  border: 1px solid #333;
}

#loadingIndicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  text-align: center;
  font-size: 16px;
  color: #333;
}

#calendar_datepicker {
  position: relative; /* Ensure the parent div is positioned */
}

/*Styling for stripe payment form*/
/* Container for the Stripe Element */
#card-element {
  border: 2px solid #333;
  border-radius: 6px;
  padding: 12px;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  transition: border 0.3s ease;
}

/* On focus, give a bold border */
#card-element.StripeElement--focus {
  border: 2px solid #007bff;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.25);
}

/* Error state */
#card-element.StripeElement--invalid {
  border-color: #dc3545;
}

/* Optional: Customize the error text */
.payment-errors {
  color: #dc3545;
  font-size: 0.9rem;
  margin-top: 8px;
}

/* Checkout button styling */
#btn_checkout_final {
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  border: 2px solid #333;
  border-radius: 5px;
  padding: 10px 15px;
  font-size: 1.1rem;
  width: 100%;
  transition: background-color 0.3s ease;
}

/* Stripe card element wrapper */
#card-element {
  border: 2px solid #333;
  border-radius: 8px;
  padding: 14px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: border 0.3s ease;
  margin-bottom: 15px;
}

/* On focus */
#card-element.StripeElement--focus {
  border-color: #007bff;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

/* On error */
#card-element.StripeElement--invalid {
  border-color: #dc3545;
}

/* Entire checkout form background */
/* Checkout button */
#btn_checkout_final {
  background-color: #ffc107;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  padding: 12px;
  border: 2px solid #333;
  border-radius: 6px;
  width: 100%;
  transition: background-color 0.3s ease;
}

/* Error message styling */
.payment-errors {
  color: #dc3545;
  font-weight: bold;
  margin-top: 8px;
}

/* Optional: Label styling */
label {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 6px;
  display: block;
}

.checkout-heading {
  font-weight: bold;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.checkout-heading i {
  color: #28a745;
  font-size: 1.6rem;
}

/* Main checkout form styling */
#checkout_form {
  background: linear-gradient(to bottom right, #ffffff, #f7f7f7);
  border: 3px solid #ffc107;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  margin: 40px auto;
  font-family: "Segoe UI", Tahoma, sans-serif;
}

/* Form title */
#checkout_form h3,
#checkout_form label {
  font-weight: bold;
  font-size: 1.2rem;
  color: #212529;
  margin-bottom: 10px;
}

/* Stripe input styling */
#card-element {
  border: 2px solid #343a40;
  border-radius: 8px;
  padding: 16px;
  background-color: #fff;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
}

/* On focus: glow */
#card-element.StripeElement--focus {
  border-color: #007bff;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

/* On error: red border */
#card-element.StripeElement--invalid {
  border-color: #dc3545;
}

/* Checkout button */
#btn_checkout_final {
  background: linear-gradient(to right, #ffc107, #ffca28);
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: bold;
  padding: 14px;
  color: #000;
  width: 100%;
  margin-top: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

#btn_checkout_final:hover {
  background: linear-gradient(to right, #ffdb4d, #ffc107);
  transform: scale(1.02);
  cursor: pointer;
  border: 2px solid #333;
  color: #000 !important;
}

/* Small texts: subtle but clear */
#checkout_form small {
  color: #555;
  font-size: 0.95rem;
}

/* Stripe logo & payment icons */
#checkout_form .form-group img {
  margin-top: 10px;
  filter: grayscale(20%);
  transition: 0.3s ease;
  max-width: 100%;
}

#checkout_form .form-group img:hover {
  filter: none;
  transform: scale(1.01);
}

/* Shared styling for Stripe elements */
#card-number-element,
#card-expiry-element,
#card-cvc-element {
border: 2px solid #ccc;
padding: 14px;
border-radius: 8px;
background-color: #fff;
font-size: 18px;
transition: all 0.3s ease;
}

/* On focus */
.StripeElement--focus {
border-color: #007bff !important;
box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

/* On error */
.StripeElement--invalid {
border-color: #dc3545 !important;
}

/* Mobile responsive layout */
@media screen and (max-width: 576px) {
.form-group.d-flex {
  flex-direction: column !important;
}
}