/* Slot Selection Dialog */
/* .slot-selection-dialog {
  padding: 2rem;
  background: white;
} */
.slot-header{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.slot-header h2 {
  font-size: 1.5rem;
  line-height: 1.7rem;
  font-weight: 700;
  color: #141414;
}

.slot-header p {
  color: #737373;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.25rem;
  text-align: start;
}

/* Date Selection */
/* .date-selection {
  margin-top: 2.5rem;
} */

.date-selection-row {
  display: flex;
  flex-wrap: wrap;
  gap:1rem;
  margin-top: 2.5rem;
}

.date-chip {
  padding: 0.75rem 1.25rem;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  font-weight: 500;
  color: #525252;
  white-space: nowrap;
}

.date-chip:hover {
  border-color: #8B5CF6;
  background: #F5F3FF;
}

.date-chip.selected {
  background: #FBEFFF;
  color: #141414;
  border-color: #B704F6;
}

.slot-selection-dialog-divider{
    width: 100%;
    height: 2px;
    background: #E5E7EB;
    margin-top: 1.5rem;
}

/* Time Selection */


.time-selection h2 {
  font-size: 1.5rem;
  line-height: 1.7rem;
  font-weight: 700;
  color: #141414;
  margin-top: 2.5rem;
}

.time-chip {
  padding: 0.75rem 1.5rem;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  background: white;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  font-weight: 500;
  color: #525252;
  min-width: 100px;
  text-align: center;
}

.time-chip:hover {
  border-color: #8B5CF6;
  background: #F5F3FF;
}

.time-chip.selected {
  background: #FBEFFF;
  color: #141414;
  border-color: #B704F6;
}

/* Disabled button state */
.primary-button-expanded.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

/* Responsive design */
@media (max-width: 768px) {
  .slot-selection-dialog {
    padding: 1.5rem;
  }

  .slot-header h2 {
    font-size: 1.25rem;
  }

  .date-chip,
  .time-chip {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
  }

  .time-selection h3 {
    font-size: 1rem;
  }
}
