:root {
  --navy: #0B2447;
  --navy-dark: #081A33;
  --blue: #2F6FED;
  --blue-light: #5AA9FF;
  --gray: #5B6B84;
  --bg: #F7F9FC;
  --success: #1F9D55;
  --error: #D64545;
}

* { box-sizing: border-box; }

body {
  font-family: -apple-system, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: #1A2333;
  margin: 0;
}

.navbar {
  background: var(--navy);
  color: white;
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand { color: white; font-weight: 700; font-size: 20px; text-decoration: none; }
.nav-links a { color: #CFE0FF; text-decoration: none; margin-left: 20px; }
.nav-user { color: #8FB4E8; margin-right: 8px; }
.btn-nav { background: var(--blue); padding: 8px 16px; border-radius: 6px; color: white !important; }

.container { max-width: 900px; margin: 40px auto; padding: 0 20px; }

.form-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(11,36,71,0.08);
  max-width: 480px;
}

label { display: block; margin-bottom: 16px; font-weight: 600; font-size: 14px; color: var(--navy); }
.input {
  display: block;
  width: 100%;
  padding: 10px 12px;
  margin-top: 6px;
  border: 1px solid #D4DCE8;
  border-radius: 6px;
  font-size: 14px;
}
.checkbox-label { display: flex; align-items: center; gap: 8px; }
.checkbox-label input { width: auto; }

.btn-primary {
  background: var(--blue);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
}
.btn-small {
  background: var(--navy);
  color: white;
  padding: 6px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
}

.dashboard-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }

.table { width: 100%; border-collapse: collapse; margin-bottom: 32px; background: white; border-radius: 8px; overflow: hidden; }
.table th, .table td { padding: 12px 16px; text-align: left; border-bottom: 1px solid #EEF1F6; font-size: 14px; }
.table th { background: var(--navy); color: white; font-weight: 600; }
.mono { font-family: monospace; font-size: 13px; color: var(--gray); }

.status { padding: 3px 10px; border-radius: 12px; font-size: 12px; font-weight: 600; text-transform: uppercase; }
.status-queued { background: #E8ECF3; color: var(--gray); }
.status-running { background: #DCEBFF; color: var(--blue); }
.status-completed { background: #DFF5E5; color: var(--success); }
.status-failed { background: #FBE2E2; color: var(--error); }

.report-card {
  background: white;
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid var(--blue);
  margin: 20px 0;
}

.flash { padding: 12px 16px; border-radius: 6px; margin-bottom: 20px; font-size: 14px; }
.flash-success { background: #DFF5E5; color: var(--success); }
.flash-error { background: #FBE2E2; color: var(--error); }

.empty-state { color: var(--gray); font-style: italic; }
.hint { color: var(--gray); font-size: 14px; }
