/* ========================================
   BOOKING WIZARD STYLES - MODERN REDESIGN
   ======================================== */

/* CSS Variables for easy theming */
:root {
  --bw-primary: #4F46E5;
  --bw-primary-hover: #4338CA;
  --bw-primary-light: #EEF2FF;
  --bw-success: #059669;
  --bw-success-light: #D1FAE5;
  --bw-error: #DC2626;
  --bw-text-primary: #0F172A;
  --bw-text-secondary: #64748B;
  --bw-text-muted: #94A3B8;
  --bw-border: #E2E8F0;
  --bw-border-focus: #4F46E5;
  --bw-bg-subtle: #F8FAFC;
  --bw-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --bw-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --bw-shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --bw-radius-sm: 8px;
  --bw-radius-md: 12px;
  --bw-radius-lg: 16px;
  --bw-radius-full: 9999px;
  --bw-transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay with blur effect */
.bw-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
}

.bw-overlay.active {
  display: flex;
}

/* Modal with refined styling */
.bw-modal {
  background: #fff;
  border-radius: var(--bw-radius-lg);
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  box-shadow: var(--bw-shadow-lg);
  animation: bwSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Custom scrollbar */
.bw-modal::-webkit-scrollbar {
  width: 6px;
}

.bw-modal::-webkit-scrollbar-track {
  background: transparent;
}

.bw-modal::-webkit-scrollbar-thumb {
  background: var(--bw-border);
  border-radius: var(--bw-radius-full);
}

.bw-modal::-webkit-scrollbar-thumb:hover {
  background: var(--bw-text-muted);
}

@keyframes bwSlideUp {
  from { 
    opacity: 0; 
    transform: translateY(24px) scale(0.96); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0) scale(1); 
  }
}

/* Close Button - More subtle */
.bw-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 24px;
  color: var(--bw-text-muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--bw-radius-sm);
  transition: all var(--bw-transition);
  z-index: 10;
}

.bw-close:hover {
  background: var(--bw-bg-subtle);
  color: var(--bw-text-primary);
}

/* Progress Indicator - Modern pill style */
.bw-progress {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 24px 24px 0;
}

.bw-step {
  width: 32px;
  height: 32px;
  border-radius: var(--bw-radius-full);
  background: var(--bw-bg-subtle);
  color: var(--bw-text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  transition: all var(--bw-transition);
  position: relative;
}

.bw-step::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background: var(--bw-border);
  margin-left: 3px;
}

.bw-step:last-child::after {
  display: none;
}

.bw-step.active {
  background: var(--bw-primary);
  color: #fff;
  box-shadow: 0 0 0 4px var(--bw-primary-light);
}

.bw-step.completed {
  background: var(--bw-success);
  color: #fff;
}

.bw-step.completed::after {
  background: var(--bw-success);
}

/* Screens */
.bw-screen {
  display: none;
  padding: 28px 28px 32px;
}

.bw-screen.active {
  display: block;
  animation: bwFadeIn 0.3s ease;
}

@keyframes bwFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.bw-screen h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: var(--bw-text-primary);
  letter-spacing: -0.02em;
}

.bw-subtitle {
  margin: 0 0 24px;
  color: var(--bw-text-secondary);
  font-size: 14px;
  line-height: 1.5;
}

/* Form Styles - Refined inputs */
.bw-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bw-row {
  display: flex;
  gap: 12px;
}

.bw-row .bw-field {
  flex: 1;
  min-width: 0;
}


.bw-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.bw-field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--bw-text-primary);
  letter-spacing: -0.01em;
}

.bw-field input,
.bw-field select,
.bw-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--bw-border);
  border-radius: var(--bw-radius-sm);
  font-size: 15px;
  font-family: inherit;
  color: var(--bw-text-primary);
  background: #fff;
  transition: all var(--bw-transition);
}

.bw-field input::placeholder,
.bw-field textarea::placeholder {
  color: var(--bw-text-muted);
}

.bw-field input:hover,
.bw-field select:hover,
.bw-field textarea:hover {
  border-color: var(--bw-text-muted);
}

.bw-field input:focus,
.bw-field select:focus,
.bw-field textarea:focus {
  outline: none;
  border-color: var(--bw-border-focus);
  box-shadow: 0 0 0 3px var(--bw-primary-light);
}

.bw-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}

.bw-field textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
}

/* Buttons - Modern styling */
.bw-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.bw-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--bw-radius-sm);
  cursor: pointer;
  transition: all var(--bw-transition);
  border: none;
  font-family: inherit;
  letter-spacing: -0.01em;
}

.bw-btn-primary {
  background: var(--bw-primary);
  color: #fff;
  box-shadow: 0 1px 2px rgba(79, 70, 229, 0.2);
}

.bw-btn-primary:hover:not(:disabled) {
  background: var(--bw-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.bw-btn-primary:active:not(:disabled) {
  transform: translateY(0);
}

.bw-btn-primary:disabled {
  background: var(--bw-border);
  color: var(--bw-text-muted);
  cursor: not-allowed;
  box-shadow: none;
}

.bw-btn-secondary {
  background: var(--bw-bg-subtle);
  color: var(--bw-text-primary);
  border: 1.5px solid var(--bw-border);
}

.bw-btn-secondary:hover {
  background: #fff;
  border-color: var(--bw-text-muted);
}

/* Calendar / Time Slots */
.bw-calendar-container {
  margin-bottom: 16px;
}

.bw-date-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding: 12px 16px;
  background: var(--bw-bg-subtle);
  border-radius: var(--bw-radius-sm);
}

.bw-nav-btn {
  background: #fff;
  border: 1.5px solid var(--bw-border);
  padding: 8px 12px;
  border-radius: var(--bw-radius-sm);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--bw-text-primary);
  font-family: inherit;
  transition: all var(--bw-transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.bw-nav-btn:hover:not(:disabled) {
  background: #fff;
  border-color: var(--bw-primary);
  color: var(--bw-primary);
}

.bw-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

#bw-date-range {
  font-weight: 600;
  font-size: 14px;
  color: var(--bw-text-primary);
}

/* Loading */
.bw-loading {
  text-align: center;
  padding: 40px 20px;
}

.bw-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--bw-border);
  border-top-color: var(--bw-primary);
  border-radius: 50%;
  margin: 0 auto 16px;
  animation: bwSpin 0.8s linear infinite;
}

@keyframes bwSpin {
  to { transform: rotate(360deg); }
}

.bw-loading p {
  margin: 0;
  font-size: 14px;
  color: var(--bw-text-secondary);
}

/* Time Slots - Card style */
.bw-slots-container {
  display: none;
  max-height: 300px;
  overflow-y: auto;
  padding-right: 4px;
}

.bw-day-group {
  margin-bottom: 20px;
  text-align: left;
}

.bw-day-group:last-child {
  margin-bottom: 0;
}

.bw-day-label {
  font-weight: 600;
  font-size: 13px;
  color: var(--bw-text-secondary);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.bw-slots {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bw-slot {
  padding: 10px 16px;
  border: 1.5px solid var(--bw-border);
  border-radius: var(--bw-radius-sm);
  background: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  font-family: inherit;
  color: var(--bw-text-primary);
  transition: all var(--bw-transition);
}

.bw-slot:hover {
  border-color: var(--bw-primary);
  background: var(--bw-primary-light);
  color: var(--bw-primary);
}

.bw-slot.selected {
  background: var(--bw-primary);
  color: #fff;
  border-color: var(--bw-primary);
  box-shadow: 0 0 0 3px var(--bw-primary-light);
}

.bw-no-slots {
  text-align: center;
  padding: 40px 20px;
  color: var(--bw-text-secondary);
}

.bw-no-slots p {
  margin: 0;
  font-size: 14px;
}

/* Selected Time Summary - Elevated card */
.bw-selected-time {
  background: var(--bw-primary-light);
  border: 1.5px solid rgba(79, 70, 229, 0.2);
  border-radius: var(--bw-radius-md);
  padding: 16px;
  margin-bottom: 20px;
  font-size: 14px;
  text-align: left;
  line-height: 1.6;
}

.bw-selected-time strong {
  color: var(--bw-primary);
  font-weight: 600;
}

/* Success Screen - Celebration style */
.bw-success {
  text-align: center;
  padding: 16px 0;
}

.bw-checkmark {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #fff;
  border-radius: var(--bw-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
  animation: bwPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes bwPop {
  0% { transform: scale(0); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.bw-success h2 {
  margin-bottom: 4px;
}

#bw-confirmation-details {
  background: var(--bw-bg-subtle);
  border-radius: var(--bw-radius-md);
  padding: 18px;
  margin: 20px 0;
  text-align: left;
  font-size: 14px;
  line-height: 1.8;
  color: var(--bw-text-secondary);
}

#bw-confirmation-details strong {
  color: var(--bw-text-primary);
  font-weight: 500;
}

.bw-manage-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.bw-manage-links a {
  color: var(--bw-primary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color var(--bw-transition);
}

.bw-manage-links a:hover {
  color: var(--bw-primary-hover);
  text-decoration: underline;
}

/* Error Screen */
.bw-error {
  text-align: center;
  padding: 16px 0;
}

.bw-error-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #F87171 0%, #DC2626 100%);
  color: #fff;
  border-radius: var(--bw-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: bold;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(220, 38, 38, 0.3);
}

.bw-error p {
  font-size: 14px;
  color: var(--bw-text-secondary);
  line-height: 1.5;
}

/* Responsive - Mobile-first refinements */
@media (max-width: 480px) {
  .bw-overlay {
    padding: 0;
    align-items: flex-end;
  }
  
  .bw-modal {
    max-height: 92vh;
    border-radius: var(--bw-radius-lg) var(--bw-radius-lg) 0 0;
    animation: bwSlideUpMobile 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
  
  @keyframes bwSlideUpMobile {
    from { 
      opacity: 0; 
      transform: translateY(100%); 
    }
    to { 
      opacity: 1; 
      transform: translateY(0); 
    }
  }
  
  .bw-screen {
    padding: 24px 20px 28px;
  }
  
  .bw-actions {
    flex-direction: column-reverse;
  }
  
  .bw-btn {
    width: 100%;
    padding: 14px 24px;
  }
  
  .bw-date-nav {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  
  #bw-date-range {
    order: -1;
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
  }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
  .bw-modal {
    /* Uncomment below for dark mode support */
    /* background: #1E293B;
    color: #F1F5F9; */
  }
}

/* Confirmation Screen - Enhanced */
.bw-success {
  text-align: center;
  padding: 8px 0;
}

.bw-checkmark {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 8px 24px rgba(5, 150, 105, 0.3);
  animation: bwPop 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.bw-checkmark svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

.bw-success h2 {
  margin: 0 0 4px;
}

.bw-success-subtitle {
  color: var(--bw-text-secondary);
  font-size: 14px;
  margin: 0 0 24px;
}

.bw-confirmation-card {
  background: var(--bw-bg-subtle);
  border-radius: var(--bw-radius-md);
  padding: 4px 0;
  margin-bottom: 20px;
  text-align: left;
}

.bw-confirmation-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 18px;
}

.bw-confirmation-row:not(:last-child) {
  border-bottom: 1px solid var(--bw-border);
}

.bw-confirmation-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: var(--bw-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--bw-shadow-sm);
}

.bw-confirmation-icon svg {
  width: 20px;
  height: 20px;
  color: var(--bw-primary);
}

.bw-confirmation-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.bw-confirmation-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--bw-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.bw-confirmation-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--bw-text-primary);
}

.bw-maps-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--bw-primary);
  text-decoration: none;
  margin-top: 6px;
  font-weight: 500;
}

.bw-maps-link:hover {
  text-decoration: underline;
}

.bw-manage-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.bw-manage-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: var(--bw-radius-sm);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  background: var(--bw-bg-subtle);
  color: var(--bw-text-primary);
  border: 1px solid var(--bw-border);
  transition: all var(--bw-transition);
}

.bw-manage-btn svg {
  width: 16px;
  height: 16px;
}

.bw-manage-btn:hover {
  background: #fff;
  border-color: var(--bw-text-muted);
}

.bw-manage-btn-danger:hover {
  background: #FEF2F2;
  border-color: #FECACA;
  color: #DC2626;
}

.bw-btn-full {
  width: 100%;
}

/* Screen Header */
.bw-screen-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.bw-header-icon {
  width: 48px;
  height: 48px;
  background: var(--bw-primary-light);
  border-radius: var(--bw-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bw-header-icon svg {
  width: 24px;
  height: 24px;
  color: var(--bw-primary);
}

.bw-header-text {
  flex: 1;
  text-align: left;
}

.bw-header-text h2 {
  margin: 0 0 4px;
}

.bw-header-text .bw-subtitle {
  margin: 0;
}

/* Form Enhancements */
.bw-required {
  color: #DC2626;
}

.bw-optional {
  color: var(--bw-text-muted);
  font-weight: 400;
  font-size: 12px;
}

.bw-input-icon {
  position: relative;
}

.bw-input-icon svg {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--bw-text-muted);
  pointer-events: none;
}

.bw-input-icon input {
  padding-left: 42px;
}

.bw-select-wrapper {
  position: relative;
}

.bw-select-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--bw-text-muted);
  pointer-events: none;
  z-index: 1;
}

.bw-select-wrapper select {
  padding-left: 42px;
  padding-right: 44px;
  width: 100%;
}

.bw-select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.bw-field-hint {
  font-size: 12px;
  color: var(--bw-text-muted);
  margin-top: 6px;
  display: block;
}

/* Button Enhancements */
.bw-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.bw-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bw-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bw-actions-split {
  display: flex;
  gap: 12px;
}

.bw-actions-split .bw-btn-secondary {
  flex: 0 0 auto;
}

.bw-actions-split .bw-btn-primary {
  flex: 1;
}

/* Loading Button State */
.bw-btn-spinner {
  display: none;
  width: 18px;
  height: 18px;
  animation: bwSpin 1s linear infinite;
}

.bw-btn.loading .bw-btn-icon,
.bw-btn.loading .bw-btn-text {
  display: none;
}

.bw-btn.loading .bw-btn-spinner {
  display: block;
}

/* Date Navigation */
.bw-date-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 12px;
}

.bw-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1.5px solid var(--bw-border);
  padding: 10px 14px;
  border-radius: var(--bw-radius-sm);
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--bw-text-primary);
  font-family: inherit;
  transition: all var(--bw-transition);
}

.bw-nav-btn svg {
  width: 16px;
  height: 16px;
}

.bw-nav-btn:hover:not(:disabled) {
  border-color: var(--bw-primary);
  color: var(--bw-primary);
}

.bw-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.bw-date-range {
  font-weight: 600;
  font-size: 14px;
  color: var(--bw-text-primary);
  text-align: center;
}

/* Empty State */
.bw-no-slots {
  text-align: center;
  padding: 32px 20px;
}

.bw-empty-icon {
  width: 64px;
  height: 64px;
  background: var(--bw-bg-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.bw-empty-icon svg {
  width: 32px;
  height: 32px;
  color: var(--bw-text-muted);
}

.bw-empty-title {
  font-weight: 600;
  font-size: 15px;
  color: var(--bw-text-primary);
  margin: 0 0 4px;
}

.bw-empty-text {
  font-size: 14px;
  color: var(--bw-text-secondary);
  margin: 0;
}

/* Appointment Summary (Step 3) */
.bw-appointment-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bw-primary-light);
  border: 1.5px solid rgba(79, 70, 229, 0.2);
  border-radius: var(--bw-radius-md);
  padding: 16px;
  margin-bottom: 20px;
  text-align: left;
}

.bw-summary-icon {
  width: 44px;
  height: 44px;
  background: #fff;
  border-radius: var(--bw-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--bw-shadow-sm);
}

.bw-summary-icon svg {
  width: 22px;
  height: 22px;
  color: var(--bw-primary);
}

.bw-summary-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.bw-summary-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--bw-primary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.bw-summary-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--bw-text-primary);
}

.bw-summary-edit {
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1.5px solid rgba(79, 70, 229, 0.2);
  border-radius: var(--bw-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--bw-transition);
  flex-shrink: 0;
}

.bw-summary-edit svg {
  width: 16px;
  height: 16px;
  color: var(--bw-primary);
}

.bw-summary-edit:hover {
  background: var(--bw-primary);
}

.bw-summary-edit:hover svg {
  color: #fff;
}

/* Mobile Adjustments */
@media (max-width: 480px) {
  .bw-screen-header {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  
  .bw-header-icon {
    margin: 0 auto;
  }
  
  .bw-header-text {
    text-align: center;
  }
  
  .bw-date-nav {
    flex-wrap: wrap;
  }
  
  .bw-date-range {
    order: -1;
    width: 100%;
    margin-bottom: 8px;
  }
  
  .bw-nav-btn {
    flex: 1;
    justify-content: center;
  }
  
  .bw-actions-split {
    flex-direction: column-reverse;
  }
  
  .bw-actions-split .bw-btn {
    width: 100%;
  }
}
.bw-date-header {
  text-align: center;
  padding: 12px 16px;
  background: var(--bw-bg-subtle);
  border-radius: var(--bw-radius-sm);
  margin-bottom: 20px;
}
/* Meeting Type Selection */
.bw-meeting-type-options {
  display: flex;
  gap: 12px;
}

.bw-meeting-type-option {
  flex: 1;
  cursor: pointer;
}

.bw-meeting-type-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bw-meeting-type-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 2px solid var(--line, #e2e8f0);
  border-radius: 12px;
  background: var(--paper, #fff);
  transition: all 0.2s ease;
}

.bw-meeting-type-option input[type="radio"]:checked + .bw-meeting-type-card {
  border-color: var(--brand, #2563eb);
  background: var(--brand-glow, rgba(37, 99, 235, 0.08));
}

.bw-meeting-type-option:hover .bw-meeting-type-card {
  border-color: var(--brand-2, #3b82f6);
}

.bw-meeting-type-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg, #f8fafc);
  border-radius: 10px;
  flex-shrink: 0;
}

.bw-meeting-type-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand, #2563eb);
}

.bw-meeting-type-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bw-meeting-type-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text, #141414);
}

.bw-meeting-type-desc {
  font-size: 12px;
  color: var(--muted, #5f5a52);
}

/* Summary meeting type */
.bw-summary-meeting-type {
  font-size: 13px;
  color: var(--muted, #5f5a52);
  margin-top: 4px;
}

/* Confirmation hint for Zoom */
.bw-confirmation-hint {
  font-size: 12px;
  color: var(--muted, #5f5a52);
  margin-top: 4px;
}

/* Responsive - stack on mobile */
@media (max-width: 480px) {
  .bw-meeting-type-options {
    flex-direction: column;
  }
}

/* Meeting Type Selection */
.bw-meeting-type-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bw-meeting-type-option {
  cursor: pointer;
}

.bw-meeting-type-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.bw-meeting-type-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--line, #e2e8f0);
  border-radius: 12px;
  background: var(--paper, #fff);
  transition: all 0.2s ease;
}

.bw-meeting-type-option input[type="radio"]:checked + .bw-meeting-type-card {
  border-color: var(--brand, #2563eb);
  background: var(--brand-glow, rgba(37, 99, 235, 0.08));
}

.bw-meeting-type-option:hover .bw-meeting-type-card {
  border-color: var(--brand-2, #3b82f6);
}

.bw-meeting-type-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg, #f8fafc);
  border-radius: 10px;
  flex-shrink: 0;
}

.bw-meeting-type-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand, #2563eb);
}

.bw-meeting-type-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.bw-meeting-type-title {
  font-weight: 600;
  font-size: 14px;
  color: var(--text, #141414);
}

.bw-meeting-type-desc {
  font-size: 12px;
  color: var(--muted, #5f5a52);
}
