/* Shared empty states — use via ui/components/empty_state.html */

.yes-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 48px 32px;
  border-radius: var(--radius-xl, 16px);
  border: 1px solid var(--gray-200, #ecece8);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(124, 58, 237, 0.08) 0%, transparent 55%),
    radial-gradient(80% 60% at 0% 100%, rgba(167, 139, 250, 0.07) 0%, transparent 50%),
    linear-gradient(180deg, var(--gray-50, #fafaf9) 0%, var(--white, #fff) 100%);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.06));
  box-sizing: border-box;
}

.yes-empty__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full, 999px);
  background: var(--white, #fff);
  border: 1px solid var(--gray-200, #ecece8);
  color: var(--accent, #7c3aed);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.06));
}

.yes-empty__icon svg {
  width: 34px;
  height: 34px;
}

.yes-empty__title {
  margin: 0;
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--black, #0d0d0d);
  max-width: 30ch;
}

.yes-empty__copy {
  margin: 0;
  max-width: 48ch;
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-600, #52524e);
  font-weight: 300;
}

.yes-empty__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 4px;
}

.yes-empty__btn {
  text-decoration: none;
}

a.yes-empty__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Inside venue grids */
.yes-empty--grid-span {
  grid-column: 1 / -1;
}

/* Inside chart cards or sections that already have a title */
.yes-empty--inline {
  padding: 28px 20px;
  border-style: dashed;
  border-color: var(--gray-300, #d6d6d0);
  background: var(--gray-50, #fafaf9);
  box-shadow: none;
}

.yes-empty--inline .yes-empty__icon {
  width: 48px;
  height: 48px;
}

.yes-empty--inline .yes-empty__icon svg {
  width: 26px;
  height: 26px;
}

.yes-empty--inline .yes-empty__title {
  font-size: 1.05rem;
}

.yes-empty--inline .yes-empty__copy {
  font-size: 14px;
}

/* Sidebar / narrow panels (inbox list, etc.) */
.yes-empty--compact {
  padding: 28px 16px;
  border-radius: var(--radius-lg, 12px);
  gap: 10px;
}

.yes-empty--compact .yes-empty__icon {
  width: 48px;
  height: 48px;
}

.yes-empty--compact .yes-empty__icon svg {
  width: 24px;
  height: 24px;
}

.yes-empty--compact .yes-empty__title {
  font-size: 1rem;
}

.yes-empty--compact .yes-empty__copy {
  font-size: 13px;
  line-height: 1.55;
}

.yes-empty--compact .yes-empty__actions {
  margin-top: 2px;
}
