/*
 * auspicious-date-finder.css — per-tool styles for the recommended-date list
 * and the weekday legend. Tokens only; no inline styles (CSP: style-src 'self').
 */

/* ---- Recommended dates + legend lists ---------------------------------- */
.adf-date-list,
.adf-legend-list {
  list-style: none;
  margin: var(--space-3) 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.adf-date-row,
.adf-legend-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--border);
}
.adf-date-row:last-child,
.adf-legend-row:last-child {
  border-bottom: 0;
}

/* Keep the rating badge a stable width so dates and names line up. */
.adf-date-badge,
.adf-legend-badge {
  flex: none;
  min-width: 5.5em;
  justify-content: center;
  text-align: center;
}

.adf-date-body,
.adf-legend-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  min-width: 0;
}

.adf-date-main,
.adf-legend-name {
  font-weight: 600;
  color: var(--text-primary);
}

.adf-date-reason,
.adf-legend-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* ---- Disclaimer -------------------------------------------------------- */
.adf-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  margin-top: var(--space-6);
}
.adf-disclaimer .icon {
  flex: none;
  margin-top: 2px;
}
