:root {
  --bp-navy: #1a365d;
  --bp-navy-light: #2a4a7f;
  --bp-navy-dark: #0f2440;
  --bp-accent: #3182ce;
  --bp-green: #38a169;
  --bp-yellow: #d69e2e;
  --bp-red: #e53e3e;
}

body { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
.badge-status { font-size: .85rem; }

.disclaimer-banner {
  background: #e2e8f0;
  border-bottom: 1px solid #cbd5e0;
  text-align: center;
  padding: .4rem;
  font-size: .8rem;
  color: #4a5568;
}

/* Score badges */
.score-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .25rem .65rem;
  border-radius: 1rem;
  font-weight: 600;
  font-size: .85rem;
}
.score-pill.easy-win { background: #c6f6d5; color: #22543d; }
.score-pill.medium { background: #fefcbf; color: #744210; }
.score-pill.heavy-lift { background: #fed7d7; color: #742a2a; }

/* Score bars */
.score-bar {
  height: .5rem;
  border-radius: .25rem;
  background: #e2e8f0;
  overflow: hidden;
}
.score-bar-fill {
  height: 100%;
  border-radius: .25rem;
  transition: width .3s ease;
}
.score-bar-fill.good { background: var(--bp-green); }
.score-bar-fill.ok { background: var(--bp-yellow); }
.score-bar-fill.bad { background: var(--bp-red); }

/* Opportunity cards */
.opp-card {
  border-left: 4px solid var(--bp-navy);
  transition: box-shadow .15s;
}
.opp-card:hover {
  box-shadow: 0 4px 12px rgba(26,54,93,.15);
}
.opp-card.verdict-easy { border-left-color: var(--bp-green); }
.opp-card.verdict-medium { border-left-color: var(--bp-yellow); }
.opp-card.verdict-heavy { border-left-color: var(--bp-red); }

/* Bid workspace */
.checklist-item.completed label { text-decoration: line-through; color: #718096; }

/* Profile cards */
.profile-card { border: 1px solid #e2e8f0; border-radius: .5rem; padding: 1.25rem; }
.profile-card.primary { border-color: var(--bp-accent); border-width: 2px; }

/* Filters */
.filter-bar { background: #f7fafc; border: 1px solid #e2e8f0; border-radius: .5rem; padding: 1rem; margin-bottom: 1.5rem; }

/* Tabs */
.nav-tabs .nav-link.active { color: var(--bp-navy); font-weight: 600; border-bottom: 2px solid var(--bp-navy); }

/* Days remaining badge */
.days-badge { font-size: .75rem; font-weight: 600; }
.days-badge.urgent { color: var(--bp-red); }
.days-badge.soon { color: var(--bp-yellow); }
.days-badge.ok { color: var(--bp-green); }

/* Print styles for proposal export */
@media print {
  .disclaimer-banner, #navbar, #footer,
  .btn, .nav-tabs, .checklist-item input,
  .no-print { display: none !important; }

  body { display: block !important; min-height: auto; }
  main { padding: 0 !important; }

  .print-section {
    page-break-inside: avoid;
    margin-bottom: 1.5rem;
    border: none !important;
  }
  .print-section h4 {
    border-bottom: 2px solid #1a365d;
    padding-bottom: .35rem;
    margin-bottom: .75rem;
    color: #1a365d;
  }
  .print-section pre {
    white-space: pre-wrap;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 11pt;
    line-height: 1.5;
    border: none;
    padding: 0;
    background: none;
  }
  .print-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #1a365d;
  }
  .print-header h1 { color: #1a365d; font-size: 18pt; margin: 0; }
  .print-header p { color: #666; margin: .25rem 0 0; font-size: 11pt; }

  @page { margin: 2cm; }
}
