#sb_booking_company_time {
  display: none !important;
}
/* Force center Book Now on mobile */
@media (max-width: 768px) {
  #main-buttons .btn.book.custom {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 100px !important; /* move up from bottom */
    display: inline-block !important;
    margin: 0 !important;
    padding: 12px 24px !important;
    max-width: 80% !important;
    text-align: center !important;
    font-size: 1rem !important;
    white-space: nowrap !important;
    z-index: 99 !important;

    /* Site color styles */
    background-color: #015152 !important;  /* your site dark teal */
    color: #ffffff !important;             /* white text */
    border: 2px solid #013d3e !important; /* slightly darker border */
    border-radius: 6px !important;
    box-shadow: 0 4px 8px rgba(1, 81, 82, 0.6) !important;
    cursor: pointer !important;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
  }

  /* Hover effect */
  #main-buttons .btn.book.custom:hover {
    background-color: #013d3e !important;
    box-shadow: 0 6px 12px rgba(1, 81, 82, 0.8) !important;
  }
}

/* Even higher on very small devices */
@media (max-width: 480px) {
  #main-buttons .btn.book.custom {
    bottom: 80px !important;
    font-size: 0.95rem !important;
    padding: 10px 20px !important;
  }
}



a[title="Fake It"] {
  display: none !important;
}
a.btn.map[title="Show on map"] {
  display: none !important;
}
/* --- Reset margin/padding to remove top whitespace --- */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

/* Remove extra space around main content */
#content-view, .container-fluid, .container {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* --- Header styles --- */
#header.web {
  display: flex !important;
  position: fixed; /* sticky header on top */
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff; /* White background */
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  z-index: 9999;
  height: 60px;
  align-items: center;
  padding: 0 15px;
  box-sizing: border-box;
}

/* Ensure container inside header uses full width */
#header.web > .container-fluid {
  padding: 0;
  width: 100%;
}

/* Flex layout for header content */
.header-flex-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

/* Hide empty logo area if no content */
.brand.company-logo-and-name {
  min-width: 150px;
  height: 40px;
  background: url('/uploads/fakeit/image_files/logo.png') no-repeat center left;
  background-size: contain;
}

/* --- Hamburger menu --- */
.nav-trigger {
  display: block !important;
  cursor: pointer;
  z-index: 10000;
}

/* Hamburger inner styling (basic) */
.hamburger {
  width: 30px;
  height: 22px;
  position: relative;
  display: inline-block;
}

.hamburger-box {
  width: 30px;
  height: 22px;
  display: inline-block;
  position: relative;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 3px;
  background-color: #015152; /* Teal color */
  border-radius: 3px;
  position: absolute;
  transition-duration: 0.3s;
  transition-property: transform;
  transition-timing-function: ease;
}

.hamburger-inner {
  top: 50%;
  margin-top: -1.5px;
}

.hamburger-inner::before {
  content: "";
  top: -10px;
}

.hamburger-inner::after {
  content: "";
  bottom: -10px;
}

/* --- Nav menu --- */
.nav-wrap {
  display: none; /* Hide by default, show on hamburger toggle */
  position: fixed;
  top: 60px; /* Below header */
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 9998;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

/* Nav items container */
#sb_menu ul.nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

#sb_menu ul.nav li.menu-item a {
  display: block;
  padding: 12px 20px;
  color: #015152;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid #eee;
}

#sb_menu ul.nav li.menu-item.active a {
  background-color: #015152;
  color: white;
}

/* --- Show nav on hamburger active --- */
.nav-trigger.active + .nav-wrap {
  display: block;
}

/* --- Responsive adjustments --- */
@media (min-width: 769px) {
  /* On desktop: show nav inline */
  .nav-wrap {
    display: block !important;
    position: static;
    max-height: none;
    box-shadow: none;
  }
  #sb_menu ul.nav {
    flex-direction: row;
    justify-content: flex-end;
  }
  #sb_menu ul.nav li.menu-item a {
    padding: 20px 15px;
    border-bottom: none;
  }
  .nav-trigger {
    display: none !important; /* hide hamburger on desktop */
  }
}

/* --- Fix main content padding to avoid overlap with fixed header --- */
body {
  padding-top: 60px;
}

/* --- Your existing fixes for main-buttons and book button --- */
/* Make sure book button stays visible and clickable */

#main-buttons {
  min-height: 400px;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  background-attachment: scroll !important;
  transition: background-position 0.3s ease;
}

@media (max-width: 768px) {
  #main-buttons {
    min-height: 300px;
    background-position: top center !important;
    background-size: contain !important;
  }
}

@media (max-width: 480px) {
  #main-buttons {
    min-height: 250px;
  }
}

#main-buttons .btn.book.custom {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(1, 81, 82, 0.85);
  color: white;
  padding: 8px 18px;
  font-size: 1rem;
  border-radius: 6px;
  border: 2px solid #fff;
  box-shadow: 0 3px 8px rgba(1,81,82,0.6);
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 10;
  max-width: 85%;
  white-space: nowrap;
  text-align: center;
  line-height: 1.2;
  user-select: none;
}

@media (max-width: 768px) {
  #main-buttons .btn.book.custom {
    bottom: 12px;
    padding: 6px 14px;
    font-size: 0.85rem;
    max-width: 65%;
    border-radius: 5px;
  }
}

@media (max-width: 480px) {
  #main-buttons .btn.book.custom {
    bottom: 10px;
    padding: 5px 12px;
    font-size: 0.75rem;
    max-width: 60%;
    border-radius: 4px;
  }
}
*/Booking Page Style /*
div#sb_booking_company_time {
    display: none;
}
/* === HIDE IMAGES AND REMOVE PLACEHOLDER SPACE === */
.user-img,
.user.img,
.sb-col-img,
.sb-service-list-item .sb-flex .sb-col-img {
  display: none !important;
  width: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* === EXPAND CONTENT TO FULL WIDTH === */
.sb-col-info {
  width: 100% !important;
  padding: 1rem !important;
  box-sizing: border-box;
}

/* === SERVICE ITEM LAYOUT RESET === */
.sb-service-list-item {
  display: block !important;
  width: 100% !important;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1rem;
  margin: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* === SERVICE LIST FLEX RESET === */
.sb-service-list-item .sb-flex {
  display: block !important;
}

/* === TEXT AND BUTTON STYLING === */
.sb-service-name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #222;
  margin-bottom: 0.5rem;
}
.sb-service-description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1rem;
}
.sb-button {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  background: #333;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}
.sb-button:hover {
  background: #111;
}

/* === RESPONSIVE OPTIMIZATION === */
@media (max-width: 768px) {
  .sb-service-list-item {
    padding: 1rem !important;
    margin: 0.75rem 0 !important;
  }

  .sb-button {
    width: 100%;
    text-align: center;
  }

  .sb-service-name {
    font-size: 1.1rem;
  }

  .sb-service-description {
    font-size: 0.95rem;
  }
}
/* Hide default SVG image and remove its container space */
.default.img {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
/* Remove any leftover space around hidden image containers */
.sb-service-list-item .sb-flex {
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

.sb-service-list-item > .sb-flex {
  display: block !important;
}

.sb-service-list-item .sb-col-img,
.default.img,
.user.img,
.user-img {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* Make sure the info column takes full width */
.sb-col-info {
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Remove padding/margin inside service items so no gaps remain */
.sb-service-list-item {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
/* Hide the preloader custom image */
.__custom-image {
  display: none !important;
}
/* Hide the preloader default SVG icon */
.preloader.__default-svg-icon {
  display: none !important;
}
/* Hide any footer or copyright text containing 'SimplyBook.me' */
div[class*="footer"], 
div[class*="copyright"], 
div[id*="footer"], 
div[id*="copyright"], 
footer, 
.sb-footer, 
.sb-copyright {
  display: none !important;
}

a.sb-cell.free {
  background-color: 00aaad !important; 
  color: #000 !important; 
  border-radius: 6px; /* Optional: rounded corners */
}

a.sb-cell.free:hover {
  background-color: #030303 !important; 
  color: #fff !important;
}

#header,
.nav-wrapper.clearfix {
  display: none !important;
}
body,
.sb-main {
  background-color: #d3e3e3 !important;
}
.available {
  display: flex;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1rem;
  color: #2d7a2d; /* pleasant green */
  background-color: #f0fdf4;
  border: 1px solid #c1eac5;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  margin: 1rem 0;
  width: fit-content;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.available .circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #34c759; /* iOS green */
  margin-right: 0.5rem;
  box-shadow: 0 0 2px #34c759;
}
.status {
  display: flex;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  margin: 0.5rem 0;
  width: fit-content;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Circle style */
.status .circle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 0.5rem;
  box-shadow: 0 0 2px currentColor;
}

/* Available */
.status.available {
  color: #2d7a2d;
  background-color: #f0fdf4;
  border: 1px solid #c1eac5;
}

.status.available .circle {
  background-color: #34c759; /* bright green */
}

/* Booked */
.status.booked {
  color: #9e2b2b;
  background-color: #fff5f5;
  border: 1px solid #f5c6cb;
}

.status.booked .circle {
  background-color: #dc3545; /* red */
}

/* Pending */
.status.pending {
  color: #856404;
  background-color: #fffbea;
  border: 1px solid #ffeeba;
}

.status.pending .circle {
  background-color: #ffc107; /* yellow */
}

#sb_content #sb-timeline #steps-nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 1rem;
  margin: 1rem 0;
  background-color: #f8f9fa; /* light grey background */
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* Each Step Item */
#sb_content #sb-timeline #steps-nav ul li {
  padding: 0.5rem 1rem;
  margin: 0 0.5rem;
  font-family: 'Segoe UI', sans-serif;
  font-size: 1rem;
  color: #555;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: all 0.3s ease;
}

/* Hover */
#sb_content #sb-timeline #steps-nav ul li:hover {
  background-color: #eee;
  cursor: pointer;
}

/* Active Step */
#sb_content #sb-timeline #steps-nav ul li.active {
  background-color: #333;
  color: #fff;
  border-color: #333;
  font-weight: bold;
}
#main #main-content #sb_content #sb-timeline #steps-nav ul .step_info_item.active a .title-small {
  color: #ffffff !important;
  font-weight: bold !important;
}

.sb-input-error,
.sb-invalid,
input:invalid {
  border: 2px solid #dc3545 !important;
  background-color: #fff0f0 !important;
}
#sb_content #sb-timeline #steps-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 1rem;
  margin: 2rem auto;
  background-color: #f5f5f5;
  border-radius: 10px;
  gap: 0.75rem;
  max-width: 100%;
  overflow: hidden;
  
}

/* Each step box */
#sb_content #sb-timeline #steps-nav ul .step_info_item {
  position: relative;
  flex: 1 1 auto;
  min-width: 140px;
  max-width: 180px;
  padding: 0.6rem 1rem 0.6rem 2.4rem;
  border-radius: 8px;
  background-color: #fff;
  border: 1px solid #ccc;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.95rem;
  color: #444;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: left;

 
}

/* Active step */
#sb_content #sb-timeline #steps-nav ul .step_info_item.active {
  background-color: #333;
  border-color: #9d3737;
  color: #fff;
  font-weight: bold;
  transform: scale(1.03);
}
#sb_content #sb-timeline #steps-nav ul .step_info_item.active::before {
  background-color: #9d3737;
}

/* Completed step */
#sb_content #sb-timeline #steps-nav ul .step_info_item.completed {
  background-color: #28a745;
  border-color: #218838;
  color: white;
  font-weight: bold;
}
#sb_content #sb-timeline #steps-nav ul .step_info_item.completed::before {
  content: "✓";
  background-color: #218838;
}

/* Responsive */
@media (max-width: 768px) {
  #sb_content #sb-timeline #steps-nav ul {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  #sb_content #sb-timeline #steps-nav ul .step_info_item {
    flex: 1 1 45%;
    margin-bottom: 0.75rem;
    text-align: center;
    padding-left: 2.4rem;
  }

  #sb_content #sb-timeline #steps-nav ul .step_info_item::before {
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
  }
}

#sb_content #sb-timeline #steps-nav ul .step_info_item {
  /* Existing styles ... */
  white-space: normal !important;     /* Allow wrapping */
  word-wrap: break-word !important;   /* Break long words */
  overflow-wrap: break-word !important; /* Newer spec */
  min-height: 60px;                   /* Give some vertical room */
  line-height: 1.3em;                 /* Comfortable line spacing */
}
/*Client Form */
/* Container padding */
.detail-step-wrap .add-details {
  background: #fff;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  max-width: 100%;
  box-sizing: border-box;
  margin-bottom: 1.5rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Form group spacing */
.detail-step-wrap .form-group {
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

/* Label styling */
.detail-step-wrap label.control-label {
  width: 30%;
  min-width: 120px;
  font-weight: 600;
  color: #015152;
  padding-right: 1rem;
  box-sizing: border-box;
}

/* Input containers */
.detail-step-wrap .col-sm-8 {
  flex: 1;
  min-width: 180px;
}

/* Inputs style */
.detail-step-wrap input.form-control {
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  border: 1.8px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}
/*Step Background */
/* Match booking info container and inner parts to page background */
#sb_booking_info,
#sb_booking_info > .booking-info,
#sb_booking_info ul.clearfix {
  background-color: #d3e3e3 !important; /* Page background color */
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  list-style: none !important;
}

/* Ensure list items have transparent background */
#sb_booking_info ul.clearfix li {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Box Stlying */
/* Box around title-small */
#sb_booking_info ul.clearfix li .title-small {
  display: inline-block;
  background-color: #e0f0f0; /* soft teal-ish background */
  color: #015152;            /* matching teal text */
  font-weight: 600;
  font-size: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(1, 81, 82, 0.15);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* If the step is active, invert colors inside the title box */
#sb_booking_info ul.clearfix li.step_info_item.active .title-small {
  background-color: #fff;
  color: #015152;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(1, 81, 82, 0.35);
}
/* Responsive scaling */
@media (max-width: 480px) {
  #sb_booking_info ul.clearfix li .title-small {
    font-size: 0.95rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Box around title-small */
#sb_booking_info ul.clearfix li .title-small {
  display: inline-block;
  background-color: #e0f0f0; /* soft teal-ish background */
  color: #015152;            /* matching teal text */
  font-weight: 600;
  font-size: 1rem;
  padding: 0.35rem 0.8rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(1, 81, 82, 0.15);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Active step title box - updated colors for visibility */
#sb_booking_info ul.clearfix li.step_info_item.active .title-small {
  background-color: #015152; /* dark teal background */
  color: #ffffff;            /* white text */
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(1, 81, 82, 0.7);
}

/* Responsive scaling */
@media (max-width: 480px) {
  #sb_booking_info ul.clearfix li .title-small {
    font-size: 0.95rem;
    padding: 0.3rem 0.6rem;
  }
}
/* Container for the terms checkbox and link */
.form-group--terms {
  display: flex;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #015152;
  margin: 1.2rem 0;
  user-select: none;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
  box-sizing: border-box;
}

/* Hide labels on screens smaller than 768px */
@media (max-width: 768px) {
  #sb_client_info_container .form-group label {
    display: none;
  }

  /* Ensure inputs take full width */
  #sb_client_info_container .col-sm-8 {
    width: 100%;
  }

  #sb_client_info_container .form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    box-sizing: border-box;
  }

  /* Optional: tighten spacing */
  #sb_client_info_container .form-group {
    margin-bottom: 10px;
  }




  #sb_client_info_container {
    padding: 8px;
  }
}
/* Mobile view adjustments */
@media (max-width: 768px) {
  #sb_client_info_container {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;     /* Center horizontally */
  }

  /* Hide all labels */
  #sb_client_info_container .form-group label {
    display: none;
  }

  /* Center and resize input container */
  #sb_client_info_container .col-sm-8 {
    width: 100%;
    max-width: 400px;        /* Optional: limit max width */
  }

  /* Input field styling */
  #sb_client_info_container .form-control {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    box-sizing: border-box;
  }

  /* Remove unnecessary spacing */
  #sb_client_info_container .form-group {
    margin-bottom: 12px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Input group fix (like for phone) */
  #sb_client_info_container .input-group {
    width: 100%;
  }
}

/* Style the form title */
@media (max-width: 768px) {
  .mobile-form-title {
    text-align: center;
    font-size: 20px;
    margin-bottom: 16px;
    color: #333;
  }

  #sb_client_info_container {
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Hide labels */
  #sb_client_info_container .form-group label {
    display: none;
  }
/* Container-style label */
label[role="button"] {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px 20px;
  max-width: 700px;
  margin: 20px auto;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  font-size: 18px;
  color: #333;
  line-height: 1.4;
  cursor: pointer;
  box-sizing: border-box;
}

/* Hide native checkbox and style it */
.custom-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #888;
  border-radius: 4px;
  background-color: #fff;
  margin-top: 2px;
  cursor: pointer;
  position: relative;
}

/* Checked state */
.custom-checkbox input[type="checkbox"]:checked {
  background-color: #333;
  border-color: #333;
}

/* Optional: custom-label as indicator layer */
.custom-label {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  label[role="button"] {
    flex-direction: row;
    align-items: center;
    font-size: 16px;
    padding: 14px 16px;
    margin: 15px 10px;
    text-align: left;
  }

  .custom-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }
}
.booking-info--item {
  border-bottom: 1px solid #ddd;
  font-family: Arial, sans-serif;
  font-size: 16px;
  color: #222;
}

/* Label cell */
.booking-info--item .label {
  font-weight: 600;
  padding: 12px 20px;
  width: 30%;
  vertical-align: top;
  box-sizing: border-box;
  white-space: nowrap;
  color: #444;
}

/* Info cell */
.booking-info--item .info {
  padding: 12px 20px;
  width: 70%;
  box-sizing: border-box;
}

/* Date line styling */
.date-line--caption {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  display: inline-block;
  background-color: #f0f0f0;
  padding: 6px 12px;
  border-radius: 6px;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.05);
}

/* Responsive: stack label and info on narrow screens */
@media (max-width: 768px) {
  .booking-info--item {
    display: block;
    padding: 12px 0;
  }
  .booking-info--item .label,
  .booking-info--item .info {
    display: block;
    width: 100%;
    padding: 6px 16px;
  }
  .booking-info--item .label {
    font-weight: 700;
    margin-bottom: 4px;
    color: #333;
    white-space: normal;
  }
  .booking-info--item .info {
    padding-left: 16px;
  }
}

/* Dates and Times style */
.tab-pd {
  max-width: 600px !important;
  margin: 20px auto !important;
  padding: 15px 20px !important;
  background: #fff !important;
  border-radius: 12px !important;
  box-shadow: 0 3px 8px rgba(1, 81, 82, 0.15) !important;
  font-family: Arial, sans-serif !important;
  color: #015152 !important;
  box-sizing: border-box !important;
}

.tab-pd > .container-caption {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  text-align: center !important;
  color: #013f3f !important;
}

/* Slots container */
#sb_time_slots_container {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  justify-content: center !important;
  margin-bottom: 25px !important;
}

/* Individual slot wrapper */
#sb_time_slots_container > .slot {
  flex: 1 1 100px !important;
  max-width: 120px !important;
}

/* The actual clickable slot */
#sb_time_slots_container > .slot > a.sb-cell.free {
  display: block !important;
  text-align: center !important;
  padding: 14px 0 !important;
  background-color: #015152 !important;
  color: white !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
  text-decoration: none !important;
  box-shadow: 0 2px 6px rgba(1,81,82,0.4) !important;
  transition: background-color 0.3s ease, box-shadow 0.3s ease !important;
}

#sb_time_slots_container > .slot > a.sb-cell.free:hover,
#sb_time_slots_container > .slot > a.sb-cell.free:focus {
  background-color: #013f3f !important;
  box-shadow: 0 4px 10px rgba(1,81,82,0.6) !important;
  outline: none !important;
  cursor: pointer !important;
}

/* Time legend */
.tab-pd > .time-legend {
  display: flex !important;
  justify-content: center !important;
  gap: 15px !important;
  font-size: 1rem !important;
  color: #015152 !important;
}

.tab-pd > .time-legend > .available {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-weight: 600 !important;
}

.tab-pd > .time-legend > .available > .circle {
  width: 18px !important;
  height: 18px !important;
  border-radius: 50% !important;
  background-color: #015152 !important;
  box-shadow: 0 0 6px #015152aa !important;
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .tab-pd {
    padding: 12px 15px !important;
  }

  #sb_time_slots_container > .slot {
    flex: 1 1 45% !important;
    max-width: none !important;
  }

  #sb_time_slots_container > .slot > a.sb-cell.free {
    font-size: 1rem !important;
    padding: 12px 0 !important;
  }

  .tab-pd > .time-legend {
    font-size: 0.9rem !important;
    gap: 10px !important;
  }

  .tab-pd > .time-legend > .available > .circle {
    width: 14px !important;
    height: 14px !important;
  }
}