
.steps {
  max-width: 600px;
  margin: 0 auto;
  padding: 1rem;
}

.step {
  margin-bottom: 1.5rem;
}

.slots-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.slot-btn {
  min-width: 80px;
  text-align: center;
}

.slot-btn.booked {
  background: #e0e0e0;
  color: #666;
  border-color: #ccc;
  cursor: not-allowed;
  opacity: 1;
}

.slot-btn.selected {
  outline: 3px solid var(--pico-primary);
}

.hidden {
  display: none;
}

.booking {
  margin-bottom: 1rem;
}

.booking.needs-confirm {
  border-left: 4px solid orange;
}

.booking header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-actions {
  display: flex;
  gap: 0.5rem;
}

.status {
  font-size: 0.8rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: auto;
}

.status-temp { background: #fff3cd; color: #856404; }
.status-auto_confirmed { background: #d1ecf1; color: #0c5460; }
.status-manual_confirmed { background: #d4edda; color: #155724; }
.status-completed { background: #e2e3e5; color: #383d41; }
.status-cancelled { background: #f8d7da; color: #721c24; }
.status-no_show { background: #f8d7da; color: #721c24; }

button[data-action="history"] {
  padding: 2px 6px;
  font-size: 0.85rem;
}

button.outline:disabled {
  background: #e0e0e0;
  border-color: #ccc;
  color: #999;
  cursor: not-allowed;
  opacity: 1;
}

button.selected-service {
  background: var(--pico-primary);
  color: white;
  border-color: var(--pico-primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-row-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.planning-table {
  border-collapse: collapse;
  min-width: 600px;
}

.planning-table th,
.planning-table td {
  border: 1px solid #ddd;
  padding: 4px 8px;
  text-align: center;
  min-width: 40px;
}

.planning-cell {
  min-width: 40px;
  min-height: 24px;
}

.minute-row td {
  font-size: 0.8rem;
  color: #666;
}
dialog#dialog-planning {
  max-width: 95vw !important;
  width: 95vw !important;
}

dialog#dialog-planning article {
  max-width: 100% !important;
  width: 100% !important;
}
