
/* Progress Steps */
.progress-steps {
  margin-bottom: 2rem;
}

.step {
  text-align: center;
  flex: 1;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e9ecef;
  color: #6c757d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.step.active .step-number {
  background: var(--primary-color);
  color: white;
}

.step-line {
  height: 2px;
  background: #e9ecef;
  flex: 1;
  margin: 0 1rem;
  margin-top: 20px;
}

.step-label {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 500;
}

.step.active .step-label {
  color: var(--primary-color);
  font-weight: 600;
}

.booking-step {
  min-height: 400px;
}

/* Calendar styles */
.calendar-container {
  border-radius: 8px;
  overflow: hidden;
}

/* Form enhancements */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(var(--primary-color-rgb), 0.25);
}

/* Reservation summary */
.reservation-summary {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 1rem;
}

.pricing-info {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border: 1px solid #dee2e6;
}