/* =========================================================
   DF / BNB — RAIDS REWARD CHECKLIST CSS
   Extends the titles checklist CSS (df-bnb-titles.css).
   Load titles.css FIRST, then this file for Raids overrides.
   ========================================================= */

/* ===== RAIDS-specific info boxes ===== */
.raidsInfoBox {
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 14px;
  background: rgba(255,255,255,.25);
  font-size: 13px;
  line-height: 1.5;
}

.raidsInfoBox strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .65;
  margin-bottom: 6px;
}

.raidsInfoRow {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 3px 0;
}

.raidsInfoRow + .raidsInfoRow {
  border-top: 1px solid rgba(0,0,0,.06);
}

.raidsInfoLabel {
  font-weight: 800;
  min-width: 100px;
  white-space: nowrap;
}

.raidsInfoValue {
  opacity: .85;
}

/* ===== Condition pill in group header ===== */
.pillCondition {
  background: rgba(100, 80, 30, .15);
  border-color: rgba(100, 80, 30, .30);
  font-size: 11px;
}

/* Timer pill (speed-run, Daily Ops tiers) */
.pillTimer {
  background: rgba(32, 93, 88, .15);
  border-color: rgba(32, 93, 88, .30);
  font-size: 11px;
}

/* Plan pill */
.pillPlan {
  background: rgba(0, 0, 0, .06);
  border-color: rgba(0, 0, 0, .14);
  font-size: 11px;
}

/* Date / year pill */
.pillDate {
  background: rgba(70, 100, 180, .18);
  border-color: rgba(70, 100, 180, .35);
}

/* ===== Group header — condition summary right-aligned ===== */
.groupHeadRight {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* ===== Table layout for repeatable/currency pools ===== */
.raidsTable {
  width: 100%;
  border-collapse: collapse;
}

.raidsTable th,
.raidsTable td {
  text-align: left;
  padding: 10px 8px;
  border-bottom: 1px solid rgba(0,0,0,.08);
  vertical-align: top;
}

.raidsTable th {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
  opacity: .65;
}

.raidsTable td:first-child {
  font-weight: 700;
}

/* Zebra striping for long tables */
.raidsTable tbody tr:nth-child(even) {
  background: rgba(0,0,0,.02);
}

/* ===== Responsive overrides for RAIDS ===== */
@media (max-width: 680px) {
  .raidsInfoRow {
    flex-direction: column;
    gap: 2px;
  }

  .raidsInfoLabel {
    min-width: auto;
  }
}

@media (max-width: 520px) {
  .raidsTable {
    font-size: 13px;
  }

  .raidsTable th,
  .raidsTable td {
    padding: 8px 6px;
  }
}

/* ===== Pool-level description text ===== */
.raidsPoolDesc {
  font-size: 12px;
  opacity: .75;
  padding: 0 2px 10px;
  font-style: italic;
}

/* ===== Empty state ===== */
.raidsEmpty {
  opacity: .65;
  font-size: 13px;
  padding: 8px 2px;
  font-style: italic;
}

/* ===== Speed-run trophy highlight ===== */
.reward.is-trophy {
  border-color: rgba(32, 93, 88, .25);
  background: rgba(32, 93, 88, .04);
}

.reward.is-trophy.is-open {
  background: rgba(32, 93, 88, .08);
}
