/* Baseball Lineup Manager - Little League / Babe Ruth */
/* Most styling lives in shared.css; this adds the advisory panel + accent. */

.blm-littleleague .blm-header {
  border-bottom: 3px solid #004da2;
  padding-bottom: 0.75rem;
}
.blm-littleleague .blm-rule-item { border-left-color: #004da2; }

/* Division / innings selector */
.blm-ll-division {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
  padding: 10px 12px;
  background: #eef4fb;
  border: 1px solid #cfe0f2;
  border-left: 4px solid #004da2;
  border-radius: 8px;
}
.blm-ll-division label { font-size: 13px; color: #003d80; }
.blm-ll-division select {
  flex: 1;
  min-width: 180px;
  padding: 6px 8px;
  font-size: 13px;
  border: 1px solid #004da2;
  border-radius: 4px;
  background: #fff;
  font-weight: 600;
}
.blm-ll-division-note {
  font-size: 11px;
  font-weight: 700;
  color: #004da2;
  white-space: nowrap;
}

/* Advisory playing-time panel */
.blm-ll-warnings { margin-top: 10px; }
.blm-ll-panel {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 12px;
  line-height: 1.4;
}
.blm-ll-panel h4 { font-size: 13px; margin: 0 0 4px 0; }
.blm-ll-panel ul { margin: 4px 0 0; padding-left: 18px; }
.blm-ll-panel.is-ok   { background: #d1e7dd; border: 1px solid #badbcc; color: #0f5132; }
.blm-ll-panel.is-warn { background: #f8ead1; border: 1px solid #d98a00; color: #5c3b00; }
