.booking-modal .modal-content {
  border: none;
  border-radius: 12px;
  overflow: hidden;
}
.booking-modal .modal-header {
  background: linear-gradient(135deg, #8B9E8B 0%, #6B7E6B 100%);
  color: white;
  border-bottom: none;
  padding: 1rem 1.5rem;
}
.booking-modal .modal-header .modal-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.375rem;
  font-weight: 600;
}
.booking-modal .modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}
.booking-modal .modal-header .btn-close:hover {
  opacity: 1;
}
.booking-modal .modal-body {
  padding: 1.5rem;
  background-color: white;
}
.booking-modal .modal-footer {
  border-top: 1px solid rgba(139, 158, 139, 0.15);
  background-color: white;
  padding: 1rem 1.5rem;
}

.booking-container {
  display: flex;
  min-height: 400px;
  margin: 0 -1.5rem -1.5rem -1.5rem;
  border-top: 1px solid rgba(139, 158, 139, 0.1);
}
@media (min-width: 768px) {
  .booking-container {
    flex-direction: row;
  }
  .booking-container .calendar-section {
    flex: 0 0 58%;
    border-right: 1px solid rgba(139, 158, 139, 0.1);
  }
  .booking-container .timeslots-section {
    flex: 0 0 42%;
  }
}
@media (max-width: 767px) {
  .booking-container {
    flex-direction: column;
  }
  .booking-container .calendar-section {
    border-bottom: 1px solid rgba(139, 158, 139, 0.1);
  }
}

.calendar-section,
.timeslots-section {
  padding: 1.25rem 1.5rem;
  background-color: white;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.calendar-header .calendar-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2C2C2C;
  margin: 0;
}
.calendar-header .calendar-nav {
  display: flex;
  gap: 0.375rem;
}
.calendar-header .calendar-nav .btn-nav {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(139, 158, 139, 0.25);
  border-radius: 6px;
  background: white;
  color: #6B7E6B;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.875rem;
}
.calendar-header .calendar-nav .btn-nav:hover {
  background: rgba(139, 158, 139, 0.08);
  border-color: #8B9E8B;
  color: #2C2C2C;
}
.calendar-header .calendar-nav .btn-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.calendar-grid .calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}
.calendar-grid .calendar-weekdays .weekday {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  color: #4A4A4A;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  padding: 0.25rem 0;
}
.calendar-grid .calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.25rem;
}
.calendar-grid .calendar-days .calendar-day {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #2C2C2C;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.calendar-grid .calendar-days .calendar-day.empty {
  pointer-events: none;
  visibility: hidden;
}
.calendar-grid .calendar-days .calendar-day.unavailable {
  color: #4A4A4A;
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}
.calendar-grid .calendar-days .calendar-day.fully-available {
  background: rgba(139, 158, 139, 0.12);
  color: #2C2C2C;
}
.calendar-grid .calendar-days .calendar-day.fully-available:hover {
  background: rgba(139, 158, 139, 0.22);
  transform: scale(1.08);
}
.calendar-grid .calendar-days .calendar-day.partially-available {
  background: rgba(139, 158, 139, 0.06);
  color: #2C2C2C;
}
.calendar-grid .calendar-days .calendar-day.partially-available:hover {
  background: rgba(139, 158, 139, 0.15);
  transform: scale(1.08);
}
.calendar-grid .calendar-days .calendar-day.selected {
  background: #8B9E8B !important;
  color: white;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(139, 158, 139, 0.3);
}
.calendar-grid .calendar-days .calendar-day.today:not(.selected) {
  border: 1.5px solid #8B9E8B;
}
@media (max-width: 767px) {
  .calendar-grid .calendar-days .calendar-day {
    width: 32px;
    height: 32px;
    font-size: 0.8125rem;
  }
}

.timeslots-section {
  display: flex;
  flex-direction: column;
  max-height: 450px;
}
.timeslots-section .timeslots-header {
  margin-bottom: 1rem;
}
.timeslots-section .timeslots-header h5 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 0.375rem;
}
.timeslots-section .timeslots-header .selected-date {
  color: #4A4A4A;
  font-size: 0.875rem;
}
.timeslots-section .timeslots-list {
  flex: 1;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.timeslots-section .timeslots-list::-webkit-scrollbar {
  width: 5px;
}
.timeslots-section .timeslots-list::-webkit-scrollbar-track {
  background: rgba(139, 158, 139, 0.08);
  border-radius: 3px;
}
.timeslots-section .timeslots-list::-webkit-scrollbar-thumb {
  background: rgba(139, 158, 139, 0.3);
  border-radius: 3px;
}
.timeslots-section .timeslots-list::-webkit-scrollbar-thumb:hover {
  background: #8B9E8B;
}
.timeslots-section .timeslot-item {
  padding: 0.625rem 0.875rem;
  border: 1px solid rgba(139, 158, 139, 0.2);
  border-radius: 6px;
  background: white;
  margin-bottom: 0.5rem;
  cursor: pointer;
  transition: all 0.15s ease;
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2C2C2C;
  text-align: center;
}
.timeslots-section .timeslot-item:hover {
  border-color: #8B9E8B;
  background: rgba(139, 158, 139, 0.06);
  transform: translateX(3px);
}
.timeslots-section .timeslot-item.selected {
  background: #8B9E8B;
  color: white;
  border-color: #8B9E8B;
  font-weight: 600;
}
.timeslots-section .timeslot-item:last-child {
  margin-bottom: 0;
}
.timeslots-section .no-slots-message {
  text-align: center;
  padding: 2rem 1rem;
  color: #4A4A4A;
}
.timeslots-section .no-slots-message i {
  font-size: 2.5rem;
  color: #C5D4C5;
  margin-bottom: 0.75rem;
  display: block;
}
.timeslots-section .no-slots-message h6 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: #2C2C2C;
}
.timeslots-section .no-slots-message p {
  font-size: 0.875rem;
  margin-bottom: 0;
}
.timeslots-section .no-slots-message .btn-contact {
  margin-top: 1rem;
}

.booking-confirmation {
  padding: 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}
.booking-confirmation .confirmation-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.booking-confirmation .confirmation-header .success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B9E8B 0%, #6B7E6B 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.875rem;
  font-size: 1.75rem;
}
.booking-confirmation .confirmation-header h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 0.375rem;
}
.booking-confirmation .confirmation-header p {
  color: #4A4A4A;
  font-size: 0.9375rem;
}
.booking-confirmation .confirmation-details {
  background: rgba(139, 158, 139, 0.04);
  border: 1px solid rgba(139, 158, 139, 0.15);
  border-radius: 8px;
  padding: 1.125rem;
  margin-bottom: 1.5rem;
}
.booking-confirmation .confirmation-details .detail-row {
  display: flex;
  align-items: flex-start;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(139, 158, 139, 0.12);
}
.booking-confirmation .confirmation-details .detail-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.booking-confirmation .confirmation-details .detail-row:first-child {
  padding-top: 0;
}
.booking-confirmation .confirmation-details .detail-row .detail-icon {
  width: 36px;
  flex-shrink: 0;
  color: #6B7E6B;
  font-size: 1.125rem;
}
.booking-confirmation .confirmation-details .detail-row .detail-content {
  flex: 1;
}
.booking-confirmation .confirmation-details .detail-row .detail-content .detail-label {
  font-size: 0.75rem;
  color: #4A4A4A;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.booking-confirmation .confirmation-details .detail-row .detail-content .detail-value {
  font-size: 0.9375rem;
  color: #2C2C2C;
  font-weight: 500;
}
.booking-confirmation .session-notes-section {
  margin-bottom: 1.5rem;
}
.booking-confirmation .session-notes-section label {
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 0.625rem;
  display: block;
  font-size: 0.9375rem;
}
.booking-confirmation .session-notes-section textarea {
  width: 100%;
  border: 1px solid rgba(139, 158, 139, 0.25);
  border-radius: 6px;
  padding: 0.875rem;
  font-size: 0.875rem;
  resize: vertical;
  min-height: 100px;
}
.booking-confirmation .session-notes-section textarea:focus {
  outline: none;
  border-color: #8B9E8B;
  box-shadow: 0 0 0 3px rgba(139, 158, 139, 0.08);
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}
.skeleton {
  background: linear-gradient(90deg, rgba(139, 158, 139, 0.08) 0%, rgba(139, 158, 139, 0.15) 50%, rgba(139, 158, 139, 0.08) 100%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
  border-radius: 6px;
}
.skeleton.skeleton-calendar .calendar-days .calendar-day {
  background: rgba(139, 158, 139, 0.08);
  color: transparent;
  cursor: wait;
  pointer-events: none;
}
.skeleton.skeleton-timeslot {
  height: 42px;
  margin-bottom: 0.5rem;
}
.skeleton.skeleton-header {
  height: 28px;
  width: 180px;
  margin-bottom: 0.875rem;
}

.booking-provider-card {
  background: rgba(139, 158, 139, 0.04);
  border: 1px solid rgba(139, 158, 139, 0.15);
  border-radius: 8px;
  padding: 0.875rem 1rem;
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.booking-provider-card .provider-avatar-booking {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B9E8B 0%, #6B7E6B 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  flex-shrink: 0;
  overflow: hidden;
}
.booking-provider-card .provider-avatar-booking img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.booking-provider-card .provider-info {
  flex: 1;
}
.booking-provider-card .provider-info .provider-name {
  font-size: 1.0625rem;
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 0.125rem;
  line-height: 1.3;
}
.booking-provider-card .provider-info .provider-title {
  font-size: 0.8125rem;
  color: #4A4A4A;
  line-height: 1.3;
}

.session-type-selector {
  margin-bottom: 1.25rem;
}
.session-type-selector label {
  font-weight: 600;
  color: #2C2C2C;
  margin-bottom: 0.625rem;
  display: block;
  font-size: 0.9375rem;
}
.session-type-selector .type-options {
  display: flex;
  gap: 0.75rem;
}
.session-type-selector .type-options .type-option {
  flex: 1;
  padding: 0.75rem 0.875rem;
  border: 1.5px solid rgba(139, 158, 139, 0.2);
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.15s ease;
  text-align: center;
}
.session-type-selector .type-options .type-option:hover {
  border-color: #8B9E8B;
  background: rgba(139, 158, 139, 0.04);
}
.session-type-selector .type-options .type-option.selected {
  border-color: #8B9E8B;
  background: rgba(139, 158, 139, 0.08);
}
.session-type-selector .type-options .type-option.selected .type-title {
  color: #6B7E6B;
  font-weight: 600;
}
.session-type-selector .type-options .type-option .type-icon {
  font-size: 1.375rem;
  color: #8B9E8B;
  margin-bottom: 0.375rem;
}
.session-type-selector .type-options .type-option .type-title {
  font-size: 0.9375rem;
  font-weight: 500;
  color: #2C2C2C;
  margin-bottom: 0.125rem;
  line-height: 1.3;
}
.session-type-selector .type-options .type-option .type-details {
  font-size: 0.75rem;
  color: #4A4A4A;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  line-height: 1.3;
}
@media (max-width: 576px) {
  .session-type-selector .type-options {
    flex-direction: column;
  }
}

.btn-sage {
  background: #8B9E8B;
  color: white;
  border: none;
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}
.btn-sage:hover {
  background: #6B7E6B;
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(139, 158, 139, 0.25);
}
.btn-sage:disabled {
  background: #4A4A4A;
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-outline-sage {
  background: transparent;
  color: #6B7E6B;
  border: 1.5px solid #8B9E8B;
  padding: 0.625rem 1.25rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.2s ease;
}
.btn-outline-sage:hover {
  background: #8B9E8B;
  color: white;
  border-color: #8B9E8B;
}

/*# sourceMappingURL=booking-modal.css.map */
