.cbp-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;   /* center horizontally */
  align-items: center;       /* center vertically */
  z-index: 9999;
}

/* Popup box */
.cbp-popup-content {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;          /* prevents from going out of screen */
  overflow-y: auto;          /* scroll if content too long */
  position: relative;
}
/* Popup header */
.cbp-popup-content h2 {
  background: #FF7B01;      /* orange like your buttons */
  color: #fff;              /* white text */
  margin: -20px -20px 20px; /* stretch to full width of box */
  padding: 15px;
  border-radius: 10px 10px 0 0; /* rounded only on top */
  font-size: 20px;
  text-align: center;
}
/* Close button */
.cbp-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}


@keyframes fadeIn {
    from { opacity:0; transform:scale(0.9);}
    to { opacity:1; transform:scale(1);}
}

.cbp-close {
    position:absolute;
    top:10px; right:15px;
    font-size:22px;
    cursor:pointer;
    color:#333;
}

.cbp-service-details {
    text-align:center;
    margin-bottom:15px;
}
.cbp-service-details img {
    max-width:120px;
    margin:0 auto 10px;
    display:block;
    border-radius:6px;
}
.cbp-service-details h3 {
    margin:5px 0;
    font-size:18px;
}
.cbp-service-details p {
    font-weight:bold;
    color:#0073aa;
    margin:0;
}

/* Form Styling */
#cbp-booking-form label {
    display:block;
    margin-top:10px;
    font-weight:bold;
    font-size:14px;
}
#cbp-booking-form input {
    width:100%;
    padding:8px;
    margin-top:5px;
    border:1px solid #ddd;
    border-radius:5px;
    font-size:14px;
}
/* Style for checkbox row */
#cbp-booking-form .terms-container {
    display: flex !important;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}

#cbp-booking-form .terms-container input[type="checkbox"] {
    margin: 0;
    width: auto;
}
#cbp-booking-form .terms-container label {
    margin: 0;
    font-size: 14px;
    cursor: pointer;
    line-height: 1.4;
}
#cbp-booking-form .terms-container a {
    color: #0073aa;
    text-decoration: underline;
}

#cbp-booking-form button {
    width:100%;
    margin-top:15px;
    padding:10px;
    background:#FF7B01;;
    border:none;
    color:white;
    font-size:16px;
    font-weight:bold;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
}
#cbp-booking-form button:hover {
    background:#e66c00;
}
.booking-confirmation {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-top: 15px;
}

.booking-confirmation h3 {
    color: #28a745; /* green success color */
    margin-bottom: 10px;
}

.booking-confirmation p {
    color: #333;
    font-size: 15px;
}

