
.iti__selected-country {
  z-index: 1 !important;
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  background: none !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: inherit !important;
  font-size: inherit !important;
  color: inherit !important;
  border-radius: 0 !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  text-decoration: none !important;
}

.btn-increment,
.btn-decrement {
  line-height: 31px;
  width: 32px; /* circle width */
  height: 32px; /* circle height */
  border-radius: 50%; /* circle shape */
  background-color: #fcd34d; /* amber-300 color */
  color: #b45309; /* amber-700 color */
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  border: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease;
}

.btn-increment:hover,
.btn-decrement:hover {
  background-color: #fbbf24; /* amber-400 */
}

.btn-increment:active,
.btn-decrement:active {
  background-color: #f59e0b; /* amber-500 */
}

.quantity-display {
  display: inline-block;
  width: 32px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  user-select: none;
}

.single-line-clamp {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal; /* important for multi-line clamp */
}

.barber-summary {
  display: flex;
  gap: 15px;
  align-items: center;
}
.barber-summary img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}
.barber-summary h2 {
  margin: 0px;
  font-weight: 600;
  font-size: 16px;
}
.barber-summary p {
  margin: 0px;
  font-size: 12px;
  color: #6b7280;
}

.flatpickr-calendar.inline {
  display: block;
  position: relative;
  top: 2px;
  margin-left: -10px;
  margin-top: -42px;
}

.flatpickr-calendar.open {
  display: inline-block;
  z-index: 99999999999999999999999999 !important;
}

.pay-btn {
  flex: 1 1 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  padding: 12px 16px !important;
  border: 1px solid #d1d5db !important;
  border-radius: 8px !important;
  background-color: #fff !important;
  color: #374151 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease !important;
}
.pay-btn:hover {
  background-color: #f3f4f6 !important;
}

@media (max-width: 768px) {
  .pay-btn {
    flex: 1 1 100% !important;
    width: 100% !important;
  }
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-slide-in {
  animation: slide-in 0.3s ease-out;
}

/* For Chrome, Safari, Edge */
::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #a3a3a3;
  /* Tailwind: gray-400 */
  border-radius: 4px;
}

/* For Firefox */
* {
  scrollbar-width: thin;
  /* makes it slimmer */
  scrollbar-color: #a3a3a3 transparent;
  /* thumb and track */
}

/* Custom styles for the sidebar on larger screens */
@media (min-width: 1024px) {
  .sidebar-desktop {
    height: calc(100vh - 2rem);
    /* Full height minus some padding */
    top: 1rem;
    /* Offset from top */
    left: 1rem;
    /* Offset from left */
    width: 18%;
    /* Slightly less than 1/5 to allow main content to be centered */
    padding: 1rem;
  }

  .main-content-desktop {
    /* No fixed margin-left here, as it's handled by the parent flex container */
    margin-right: 1rem;
    /* Right margin for balance */
    max-width: calc(100% - 2rem);
    /* Max width to prevent content from stretching too wide */
    padding-bottom: 0;
    /* Remove bottom padding as buttons are now below */
  }

  .main-content-wrapper-desktop {
    margin-left: 20%;
    /* Space for the fixed sidebar */
    padding-top: 1rem;
    /* Top padding for the content wrapper */
  }
}

/* Ensure smooth transitions for step changes */
.bpabfb-step-content {
  transition: opacity 0.3s ease-in-out;
}

/* pika  */

/* Pikaday Calendar Full Override */
.pika-single {
  z-index: 999999 !important;
  display: block !important;
  position: absolute !important;
  color: #111827 !important; /* Tailwind gray-900 */
  background: #fff !important;
  border: 1px solid #d1d5db !important; /* Tailwind gray-300 */
  border-radius: 0.5rem !important; /* rounded-lg */
  box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1) !important;
  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  padding: 0.5rem !important;
  margin-top: 0.5rem !important;
}

.pika-title {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  font-weight: 600 !important;
  color: #111827 !important;
  gap: 1rem !important;
  margin-bottom: 0.25rem !important;
}

/* Month nav buttons */
.pika-prev,
.pika-next {
  display: inline-block !important;
  font-size: 0.875rem !important;
  color: #374151 !important;
  padding: 0.25rem 0.75rem !important;
  border: 1px solid #d1d5db !important;
  border-radius: 0.375rem !important;
  background-color: #f9fafb !important;
  cursor: pointer !important;
  transition: background 0.2s, color 0.2s !important;
}

.pika-prev:hover,
.pika-next:hover {
  background-color: #fef3c7 !important;
  color: #b45309 !important;
}

.pika-table {
  width: 100% !important;
  border-collapse: separate !important;
  border-spacing: 0.25rem !important;
}

.pika-table th {
  color: #6b7280 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  text-align: center !important;
  padding-bottom: 0.25rem !important;
}

.pika-button {
  display: block !important;
  width: 100% !important;
  padding: 0.5rem !important;
  font-size: 12px !important;
  line-height: 1rem !important;
  text-align: center !important;
  color: #374151 !important;
  background-color: #f9fafb !important;
  border-radius: 0.375rem !important;
  cursor: pointer !important;
  transition: background 0.2s, color 0.2s !important;
}

.pika-button:hover {
  background-color: #fbbf24 !important; /* amber-400 */
  color: white !important;
}

.is-selected .pika-button {
  background-color: #f59e0b !important; /* amber-500 */
  color: white !important;
  font-weight: 600 !important;
}

.is-today .pika-button {
  border: 2px solid #f59e0b !important;
  background-color: #fff7ed !important;
}

.is-disabled .pika-button {
  opacity: 0.3 !important;
  pointer-events: none !important;
  background-color: #f3f4f6 !important;
}

.is-outside-current-month .pika-button {
  color: #9ca3af !important;
  opacity: 0.3 !important;
}

/* Make it responsive */
@media (max-width: 480px) {
  .pika-single {
    font-size: 13px !important;
    width: 100% !important;
  }

  .pika-lendar {
    width: 100% !important;
  }
}

.pika-prev,
.pika-next {
  display: block !important;
  cursor: pointer !important;
  position: relative !important;
  outline: none !important;
  border: 0 !important;
  padding: 0 !important;
  width: 20px !important;
  height: 30px !important;
  text-indent: 20px !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  background-color: transparent !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: 75% 75% !important;
  opacity: 0.5 !important;
}
.pika-lendar {
  float: left !important;
  width: 324px !important;
  margin: 8px !important;
}
.pika-button {
  border: 0 !important;
}

.disabled-slot {
  background-color: #ff0000; /* similar to Tailwind's bg-gray-200 */
  color: #fff; /* text-gray-400 */
  cursor: not-allowed;
  pointer-events: none;
}

.bbap-service-image {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 1px solid #fbbf24 !important; /* amber border */
}

/* for confirmation */
/* Modal overlay */
.bbsp-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 100% !important;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Modal content box */
.bbsp-modal-content {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.bbsp-modal-title {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}

.bbsp-modal-actions {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* Buttons */
.bbsp-btn {
  padding: 4px 20px;
  font-size: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.bbsp-btn-yes {
  background-color: #28a745;
  color: #fff;
}

.bbsp-btn-no {
  background-color: #ccc;
  color: #000;
}
.bbsp-modal-message {
  margin-bottom: 20px;
  font-size: 16px;
  color: #333;
}

/* // style for time slot legend  */
.bbap-legend {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 14px;
}
.bbap-legend-item {
  padding: 6px 12px;
  border-radius: 4px;
  color: #fff;
}
.bbap-available {
  background-color: #ffffff;
  color: #333;
  border: 1px solid #ccc;
}
.bbap-selected {
  background-color: #f59e0b; /* amber */
}
.bbap-booked {
  background-color: #ff0000;
  color: #fff;
  cursor: not-allowed;
  pointer-events: none;
  border: 1px solid #ccc;
}

/* Slot Grid */
.bbap-slot-container {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Slot label default style */
.bbap-slot-label {
  display: block;
  padding: 10px 16px;
  border-radius: 4px;
  border: 1px solid #ccc;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}

/* Hidden checkbox but used with :checked + styling */
.bbap-slot-input {
  display: none;
}

/* Selected State */
.bbap-slot-input:checked + .bbap-slot-time {
  background-color: #f59e0b;
  color: #fff;
  border-radius: 4px;
  padding: 2px 6px;
}

/* // for toast  */
.bpabfb-toast-container {
  position: fixed;
  top: 1.25rem; /* top-5 */
  right: 1.25rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* space-y-2 */
  left: auto;
  transform: none;
  width: auto; /* default */
  max-width: 100%;
}

/* Mobile: center + set width */
@media (max-width: 767.98px) {
  .bpabfb-toast-container {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    width: 90%; /* responsive width on small screens */
    max-width: 320px; /* prevent overly wide container */
  }
}

/* Optional: larger width on desktop if needed */
@media (min-width: 768px) {
  .bpabfb-toast-container {
    width: auto; /* allow content-sized width */
    max-width: 400px; /* or whatever max you prefer */
  }
}

/* .bpabfb-title {
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 12px;
} */

/* / style step  */
/* .bpabfb-booking-container {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
} */
/* .bpabfb-booking-container br {
  display: none;
}
.bpabfb-step-content,
.bpabfb-sidebar-container {
  padding: 15px;
  border-radius: 5px;
  border: 1px dotted #e5f7ff;
  box-shadow: none !important;
} */
/* .bpabfb-booking-container {
  font-family: Arial, Helvetica, sans-serif;
}
.bpabfb-booking-container .bpabfb-step-item :is(br, p) {
  display: none;
} */
/* .bpabfb-booking-container .bpabfb-step-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 1rem 0.5rem;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: color 0.3s ease, border-color 0.3s ease;
} */

/* Active step */
/* .sidebar-item.active {
  border-left-color: #15b9ff; 
  color: #15b9ff; 
  background-color: #e5f7ff;
} */

/* Completed / previous step */
/* .sidebar-item.previous {
  border-left-color: #10b981; 
  color: #10b981; 
  background-color: #e5f7ff;
} */

/* Inactive default state */
/* .sidebar-item:not(.active):not(.previous) {
  border-left-color: #d1d5db; 
  color: #6b7280;
} */

/* Hover effect */
/* .sidebar-item:hover {
  color: #111827;
  border-left-color: #9ca3af;
} */

/* // button descitpion input  */

/* Form group wrapper */

/* Input fields (text, email, tel, etc.) */
/* .bpabfb-booking-container input,
.bpabfb-booking-container select,
.bpabfb-booking-container textarea {
  padding: 0.55rem 0.75rem !important;
  border: 1.6px solid #d1d5db !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  color: #111827 !important;
  background: transparent !important;

  transition: border-color 0.25s ease, box-shadow 0.25s ease !important;
} */

/* Focus state (matches your stepper + button theme) */
/* .bpabfb-booking-container input:focus,
.bpabfb-booking-container select:focus,
.bpabfb-booking-container textarea:focus {
  outline: none !important;
  border-color: #0ea5e9 !important;
}

.bpabfb-booking-container input:disabled,
.bpabfb-booking-container textarea:disabled,
.bpabfb-booking-container select:disabled {
  opacity: 0.45 !important;
  border-style: dashed !important;
  cursor: not-allowed !important;
  background: transparent !important;
} */

/* .maintant-height {
  height: 385px;
} */

/* .bpabfb-next-btn, */
/* .bpabfb-prev-btn, */
/* .bpabfb-apply-coupon-btn {
  background: #0ea5e9 !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 0.5rem 0.75rem !important;
  border: 1.6px solid #0ea5e9 !important;
  font-size: 15px !important;
  cursor: pointer !important;
  transition: background-color 0.25s ease, border-color 0.25s ease !important;
} */

/* .bpabfb-next-btn:hover {
  background: #0ea5e9 !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 0.5rem 0.75rem !important;
  border: 1.6px solid #0ea5e9 !important;
  font-size: 15px !important;
  cursor: pointer !important;
  transition: background-color 0.25s ease, border-color 0.25s ease !important;
} */

/* ================================== */
/*    Booking form styles            */
/* ================================== */

/* .duration-card {
  background: var(--gradient-card-dark);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  justify-content: space-between;
} */
