.gmo-booking-container {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  max-width: 700px;
  margin: 20px auto;
  padding: 0;
}

.gmo-booking-container * {
  box-sizing: border-box;
}

.gmo-loading {
  text-align: center;
  padding: 40px;
  color: #666;
}

.gmo-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #e5e7eb;
  border-top-color: var(--gmo-primary, #3b82f6);
  border-radius: 50%;
  animation: gmo-spin 0.8s linear infinite;
  margin: 0 auto 16px;
}

@keyframes gmo-spin {
  to { transform: rotate(360deg); }
}

.gmo-header {
  text-align: center;
  margin-bottom: 24px;
}

.gmo-header h3 {
  font-size: 24px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #1f2937;
}

.gmo-steps {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
}

.gmo-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #9ca3af;
}

.gmo-step.active {
  color: var(--gmo-primary, #3b82f6);
  font-weight: 600;
}

.gmo-step.completed {
  color: #10b981;
}

.gmo-step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  background: #e5e7eb;
  color: #6b7280;
}

.gmo-step.active .gmo-step-number {
  background: var(--gmo-primary, #3b82f6);
  color: white;
}

.gmo-step.completed .gmo-step-number {
  background: #10b981;
  color: white;
}

.gmo-calendar {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.gmo-calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.gmo-calendar-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

.gmo-nav-btn {
  background: white;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  color: #374151;
  transition: all 0.2s;
}

.gmo-nav-btn:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
}

.gmo-calendar-grid {
  padding: 12px;
}

.gmo-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 8px;
}

.gmo-weekday {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #9ca3af;
  padding: 8px 0;
  text-transform: uppercase;
}

.gmo-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.gmo-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  cursor: default;
  color: #d1d5db;
  border: none;
  background: none;
}

.gmo-day.available {
  color: #1f2937;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.2s;
}

.gmo-day.available:hover {
  background: var(--gmo-primary-light, #eff6ff);
  color: var(--gmo-primary, #3b82f6);
}

.gmo-day.selected {
  background: var(--gmo-primary, #3b82f6);
  color: white;
  font-weight: 600;
}

.gmo-day.today {
  border: 2px solid var(--gmo-primary, #3b82f6);
}

.gmo-day.other-month {
  visibility: hidden;
}

.gmo-slots-container {
  margin-top: 24px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}

.gmo-slots-header {
  padding: 16px 20px;
  background: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.gmo-slots-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

.gmo-slots-list {
  padding: 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 8px;
  max-height: 300px;
  overflow-y: auto;
}

.gmo-slot {
  padding: 10px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: all 0.2s;
}

.gmo-slot:hover {
  border-color: var(--gmo-primary, #3b82f6);
  background: var(--gmo-primary-light, #eff6ff);
  color: var(--gmo-primary, #3b82f6);
}

.gmo-slot.selected {
  background: var(--gmo-primary, #3b82f6);
  border-color: var(--gmo-primary, #3b82f6);
  color: white;
}

.gmo-slot-staff {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 4px;
}

.gmo-slot.selected .gmo-slot-staff {
  color: rgba(255,255,255,0.8);
}

.gmo-form-container {
  margin-top: 24px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 24px;
}

.gmo-form-container h4 {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
}

.gmo-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.gmo-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.gmo-form-group.full-width {
  grid-column: span 2;
}

.gmo-form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}

.gmo-form-group label .required {
  color: #ef4444;
}

.gmo-form-group input,
.gmo-form-group textarea {
  padding: 10px 14px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #1f2937;
  outline: none;
  transition: border-color 0.2s;
}

.gmo-form-group input:focus,
.gmo-form-group textarea:focus {
  border-color: var(--gmo-primary, #3b82f6);
  box-shadow: 0 0 0 3px var(--gmo-primary-light, rgba(59,130,246,0.1));
}

.gmo-form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.gmo-actions {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

.gmo-btn {
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.gmo-btn-primary {
  background: var(--gmo-primary, #3b82f6);
  color: white;
}

.gmo-btn-primary:hover {
  opacity: 0.9;
}

.gmo-btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.gmo-btn-secondary {
  background: white;
  color: #374151;
  border: 1px solid #d1d5db;
}

.gmo-btn-secondary:hover {
  background: #f3f4f6;
}

.gmo-success {
  text-align: center;
  padding: 40px 20px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
}

.gmo-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #d1fae5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 32px;
  color: #10b981;
}

.gmo-success h3 {
  font-size: 20px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 8px;
}

.gmo-success p {
  color: #6b7280;
  margin: 0 0 16px;
  line-height: 1.6;
}

.gmo-success-details {
  background: #f9fafb;
  border-radius: 8px;
  padding: 16px;
  display: inline-block;
  text-align: left;
}

.gmo-success-detail {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
}

.gmo-success-detail:last-child {
  margin-bottom: 0;
}

.gmo-success-detail strong {
  color: #374151;
  min-width: 80px;
}

.gmo-success-detail span {
  color: #6b7280;
}

.gmo-zoom-detail {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid #e5e7eb;
}

.gmo-zoom-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 14px;
  background: #eff6ff;
  border-radius: 6px;
  transition: all 0.2s;
}

.gmo-zoom-link:hover {
  background: #dbeafe;
  color: #1d4ed8;
}

.gmo-no-slots {
  text-align: center;
  padding: 24px;
  color: #9ca3af;
  font-size: 14px;
}

.gmo-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 12px 16px;
  margin-top: 16px;
  font-size: 14px;
}

@media (max-width: 640px) {
  .gmo-form-grid {
    grid-template-columns: 1fr;
  }
  .gmo-form-group.full-width {
    grid-column: span 1;
  }
  .gmo-slots-list {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  }
  .gmo-steps {
    flex-wrap: wrap;
  }
}
