/* Per-group room selection — room step */
.group-room-selections {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.group-room-section {
  border-radius: 1.5rem;
  border: 1px solid rgba(25, 28, 29, 0.12);
  background: #fff;
  padding: 1.25rem 1rem 1.5rem;
}

@media (min-width: 768px) {
  .group-room-section {
    padding: 1.75rem 1.5rem 2rem;
    border-radius: 2rem;
  }
}

.group-room-section.is-complete {
  border-color: rgba(0, 68, 94, 0.28);
  box-shadow: 0 12px 32px rgba(0, 13, 33, 0.06);
}

.group-room-section__header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 1.25rem;
}

.group-room-section__title {
  font-family: var(--font-label, inherit);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #775a19;
}

.group-room-section__meta {
  font-size: 0.875rem;
  color: rgba(25, 28, 29, 0.72);
}

.group-room-section__status {
  font-size: 0.75rem;
  font-weight: 600;
  color: #00445e;
}

.group-room-section__status.is-pending {
  color: rgba(25, 28, 29, 0.55);
}

.group-room-section .room-card.selected {
  outline: 2px solid #00445e;
  outline-offset: 2px;
}

/* Guest grouping — stay step */
.stay-guest-grouping {
  margin-top: 0.5rem;
}

.stay-guest-grouping button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.guest-grouping-board {
  background: #f8f9fa;
}

.guest-pool {
  padding: 0.75rem;
  border-radius: 1.25rem;
  border: 1px dashed rgba(25, 28, 29, 0.15);
  background: rgba(255, 255, 255, 0.65);
}

.guest-token {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(0, 13, 33, 0.12);
  border-radius: 9999px;
  background: #fff;
  color: #000d21;
  cursor: grab;
  padding: 0.35rem;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
  touch-action: none;
}

.guest-token:active {
  cursor: grabbing;
}

.guest-token--adult {
  width: 3.25rem;
  height: 3.25rem;
}

.guest-token--adult .material-symbols-outlined {
  font-size: 2.125rem;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.guest-token--child {
  width: 2.35rem;
  height: 2.35rem;
}

.guest-token--child .material-symbols-outlined {
  font-size: 1.35rem;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

.guest-token:hover {
  border-color: rgba(0, 13, 33, 0.35);
  transform: translateY(-1px);
}

.guest-token.is-selected {
  border-color: #000d21;
  box-shadow: 0 0 0 3px rgba(0, 13, 33, 0.12);
  background: #eef2f6;
}

.guest-token.is-dragging {
  opacity: 0.55;
  transform: scale(0.95);
}

.group-slot__label {
  margin-bottom: 0.5rem;
  text-align: center;
}

.group-slot__dropzone {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 5.5rem;
  padding: 1rem;
  border-radius: 1.25rem;
  border: 2px dashed rgba(119, 90, 25, 0.28);
  background: rgba(255, 255, 255, 0.8);
  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.group-slot.is-drag-over .group-slot__dropzone {
  border-color: #000d21;
  background: rgba(0, 13, 33, 0.04);
  box-shadow: inset 0 0 0 1px rgba(0, 13, 33, 0.08);
}

.group-slot__dropzone.is-full {
  border-color: rgba(185, 28, 28, 0.35);
  background: rgba(254, 242, 242, 0.85);
}

.group-slot__dropzone.is-full .group-slot__placeholder {
  color: rgba(185, 28, 28, 0.65);
}

.group-slot__placeholder {
  font-size: 0.8rem;
  color: rgba(25, 28, 29, 0.45);
  font-style: italic;
  pointer-events: none;
  user-select: none;
}

.guest-pool-empty {
  width: 100%;
  text-align: center;
}
