/* ========================================
   Empty state — boletería style
   Used wherever a list is empty (salas, predicciones, etc.).
   Dashed paper-feel border, mono caption, centred icon.
   ======================================== */

.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 48px 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  color: var(--ink-soft);
  text-align: center;
}
.empty-state > .icon {
  opacity: 0.45;
  color: var(--muted);
}
.empty-state > p {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
  max-width: 32ch;
  line-height: 1.6;
}

/* CTA inside empty state — let it stand out without competing */
.empty-state > .btn-primary,
.empty-state > a.btn-primary {
  margin-top: 6px;
}
