/* Herald · Nanoleaf — shell only. Hex-triangle empty state with a
   gradient that hints at the colors Nanoleaf is known for. Floating
   capsule pill style for when lights eventually load (deferred). */

.nl-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
  padding: 16px 14px;
}
.nl-empty-icon {
  width: 96px;
  height: 96px;
  margin-bottom: 4px;
}
.nl-empty-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 24px rgba(155, 107, 255, 0.32));
}
.nl-empty-h {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.15px;
  color: var(--text-primary, #fff);
  text-shadow: 0 0 14px rgba(155, 107, 255, 0.30);
}
.nl-empty-p {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--text-secondary, rgba(255,255,255,0.8));
  max-width: 460px;
}
.nl-empty-p.nl-dim {
  font-size: 12px;
  color: var(--text-muted, rgba(255,255,255,0.55));
}
.nl-url {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(155, 107, 255, 0.18);
  border: 1px solid rgba(155, 107, 255, 0.4);
  color: #d3b0ff;
  font-weight: 700;
}

/* Tile pill list for when lights load (kept here so the design is
   ready when the backend is wired). */
.nl-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 4px 2px 8px;
}
.nl-tile {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 10px 20px 10px 12px;
  border-radius: 999px;
  background: rgba(8, 12, 22, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: var(--text-secondary);
  min-height: 64px;
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.28),
              inset 0 1px 0 rgba(255, 255, 255, 0.07);
}
.nl-tile.on {
  background: linear-gradient(90deg, rgba(255,107,182,0.16), rgba(82,217,255,0.10));
  border-color: rgba(155, 107, 255, 0.45);
  color: #f5e6ff;
}
