/* Latest Result page */
.lr-page {
  background: #000;
  min-height: calc(100dvh - 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.lr-wrapper {
  width: 100%;
  max-width: 440px;
  position: relative;
}

/* Back button above panel */
.lr-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0 12px;
  text-decoration: none;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 600;
}
.lr-back svg { width: 22px; height: 22px; fill: rgba(255,255,255,.7); }

/* Static panel — all rows visible, all red from start */
.lr-static .ld-row {
  max-height: 90px;
  opacity: 1;
  padding: 6px 8px;
  margin-bottom: 5px;
}

/* Empty state */
.lr-empty {
  text-align: center;
  color: rgba(255,255,255,.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lr-empty svg { width: 52px; height: 52px; fill: rgba(255,255,255,.25); }
.lr-empty p   { font-size: 15px; }
.lr-back-btn  {
  background: var(--navy, #0d1550);
  color: #fff;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
}