/* Scouting Groen & Tailwind Stijl Theme */
:root {
  --scout-green: #15803d;
  --scout-green-hover: #166534;
  --scout-green-light: #f0fdf4;
  --scout-green-border: #bbf7d0;
  --bg-slate: #f8fafc;
  --card-white: #ffffff;
  --text-dark: #0f172a;
  --border-color: #e2e8f0;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-slate);
  margin: 0;
  padding: 0;
}

/* Custom scrollbars */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

/* Status Badges */
.badge-nieuw { background-color: #dbeafe; color: #1e40af; }
.badge-behandeling { background-color: #fef3c7; color: #92400e; }
.badge-gepicked { background-color: #dcfce7; color: #166534; }
.badge-afgegeven { background-color: #ecfdf5; color: #047857; }
.badge-geannuleerd { background-color: #f1f5f9; color: #475569; }

/* Progress Bar voor Picklijst */
.progress-bar-bg {
  width: 100%;
  background-color: #e2e8f0;
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}
.progress-bar-fill {
  background-color: var(--scout-green);
  height: 100%;
  transition: width 0.3s ease;
}

/* Print CSS Rules */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
  }
  .no-print, nav, header, aside, .bottom-nav {
    display: none !important;
  }
  .printable-area {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    margin: 0;
    padding: 20px;
    background: white !important;
  }
}