html,
body {
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f4f6f8;
  --card: #ffffff;
  --text: #12212f;
  --muted: #4d5e70;
  --accent: #0f8a5f;
  --accent-hover: #0c6e4c;
  --border: #d3dce4;
  --danger: #a3172a;
  --success: #166534;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  background: linear-gradient(140deg, #f4f6f8, #e8eff5);
  color: var(--text);
}


h1 {
  margin-top: 0;
}

p {
  color: var(--muted);
}


.alert {
  border-radius: 8px;
  padding: 10px 12px;
  margin: 14px 0;
  font-weight: 600;
}

.alert.success {
  background: #dcfce7;
  color: var(--success);
}

.alert.error {
  background: #fee2e2;
  color: var(--danger);
}


/* Landing page style (scoped) */
.landing-body {
  margin: 0 !important;
  padding: 0 !important;
  color: #0b2d66;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background: radial-gradient(circle at 75% 8%, #c8f0e9 0%, #d7ebf8 45%, #c7e1f5 70%, #b6d6f1 100%);
}

.landing-topbar {
  background: #1858b9;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  margin-top: 0 !important;
  padding: 14px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.landing-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.landing-logo-box {
  width: 52px;
  height: 52px;
  border: 2px dashed rgba(189, 221, 255, 0.95);
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.landing-brand {
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
}

.landing-subtitle {
  margin-top: 4px;
  font-size: 15px;
  opacity: 0.95;
}

.landing-nav {
  display: flex;
  gap: 10px;
}

.landing-nav a {
  text-decoration: none;
  color: #f1f7ff;
  border: 1px solid rgba(185, 214, 255, 0.9);
  border-radius: 12px;
  padding: 9px 14px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s ease;
}

.landing-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.landing-hero {
  background: linear-gradient(120deg, #142f7e 0%, #214ca3 55%, #4d8fd8 100%);
  color: #fff;
  padding: 30px 24px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  min-height: 360px;
}

.landing-hero-text {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.landing-hero-text h1 {
  margin: 0 0 12px;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.05;
  color: #fff;
}

.landing-hero-text p {
  margin: 0;
  color: #f2f8ff;
  font-size: clamp(16px, 1.1vw, 21px);
  line-height: 1.4;
  max-width: 760px;
}

.landing-btn {
  display: inline-block;
  margin-top: 20px;
  background: linear-gradient(180deg, #ffbe26 0%, #f29e00 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  padding: 13px 24px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(255, 166, 0, 0.35);
}


.landing-hero-media {
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: 2px dashed rgba(173, 213, 255, 0.9);
  display: grid;
  place-items: center;
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 700;
  text-align: center;
  color: rgba(241, 248, 255, 0.95);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
  z-index: 1;
  pointer-events: none;
}

.landing-main {
  max-width: 1400px;
  margin: 22px auto 26px;
  padding: 0 16px;
}

.landing-section {
  margin-bottom: 26px;
}

.landing-section h2 {
  margin: 0 0 8px;
  color: #083e92;
  font-size: clamp(30px, 2.2vw, 42px);
  line-height: 1.15;
}

.landing-section-head {
  background: #eef3fa;
  border: 1px solid #9ec2ee;
  border-radius: 14px;
  padding: 18px 16px;
  margin-bottom: 14px;
}

.landing-section-head p {
  margin: 8px 0 0;
  color: #24334f;
  font-size: clamp(16px, 1vw, 20px);
}

.landing-grid {
  display: grid;
  gap: 12px;
}

.landing-grid.five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.landing-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.landing-card {
  background: #f3f6fb;
  border: 1px solid #b5c9e3;
  border-radius: 14px;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(16, 52, 110, 0.08);
}

.landing-card-icon {
  border: 2px dashed #8db9eb;
  border-radius: 12px;
  min-height: 86px;
  display: grid;
  place-items: center;
  font-size: 16px;
  margin-bottom: 12px;
  color: #1b4d9a;
  font-weight: 700;
}

.landing-card h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 1.25vw, 26px);
  color: #073f96;
}

.landing-card p {
  margin: 0;
  color: #20395e;
  line-height: 1.4;
  font-size: clamp(15px, 0.9vw, 18px);
}

.step-card {
  padding-top: 10px;
}

.landing-step-badge {
  display: inline-block;
  font-size: clamp(12px, 0.78vw, 15px);
  border-radius: 999px;
  border: 1px solid #e7b648;
  color: #aa6500;
  background: #fce9b7;
  padding: 4px 10px;
  margin-bottom: 10px;
  font-weight: 700;
}

.landing-faq {
  display: grid;
  gap: 10px;
}

.landing-faq details {
  background: #f7f8fb;
  border: 1px solid #b7c9df;
  border-radius: 12px;
  padding: 8px 12px;
}

.landing-faq summary {
  cursor: pointer;
  color: #083d94;
  font-weight: 700;
  font-size: clamp(16px, 1vw, 20px);
}

.landing-faq p {
  margin: 8px 0 4px;
  color: #21395c;
  font-size: clamp(15px, 0.92vw, 17px);
}

.landing-footer {
  background: #1858b9;
  color: #e9f3ff;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: clamp(12px, 0.86vw, 14px);
}

@media (max-width: 1200px) {
  .landing-brand {
    font-size: 34px;
  }

  .landing-hero {
    min-height: 300px;
  }

  .landing-hero-media {
    inset: 0;
  }

  .landing-grid.five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-grid.four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .landing-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .landing-brand {
    font-size: 30px;
  }

  .landing-subtitle {
    font-size: 14px;
  }

  .landing-grid.five,
  .landing-grid.four {
    grid-template-columns: 1fr;
  }

  .landing-hero {
    min-height: 0;
    padding: 24px 16px;
  }

  .landing-hero-media {
    position: static;
    min-height: 180px;
    margin-bottom: 14px;
  }

  .landing-footer {
    flex-direction: column;
  }
}


/* Report page style (scoped) */
.report-page {
  background: radial-gradient(circle at 70% 5%, #bdece3 0%, #d8ebf8 50%, #b3d8f3 100%);
  color: #0c1f44;
}

.report-topbar {
  background: #1858b9;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.report-brand-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.report-logo-box {
  width: 52px;
  height: 52px;
  border: 2px dashed #91bdf0;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
}

.report-brand {
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
}

.report-subtitle {
  margin-top: 4px;
  font-size: 14px;
}

.report-back-btn {
  text-decoration: none;
  color: #fff;
  border: 1px solid #7fb2ef;
  border-radius: 11px;
  padding: 9px 14px;
  font-weight: 700;
}

.report-shell {
  max-width: 1400px;
  margin: 24px auto 30px;
  padding: 0 16px;
}

.report-panel {
  background: #eef3fa;
  border: 1px solid #a7c7e9;
  border-radius: 20px;
  overflow: hidden;
}

.report-panel-head {
  background: #1b5dc0;
  color: #fff;
  padding: 14px 18px;
}

.report-panel-head h1 {
  margin: 0;
  font-size: 42px;
  color: #fff;
}

.report-panel-head p {
  margin: 6px 0 0;
  color: #e9f3ff;
  font-size: 18px;
}

.report-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 14px;
  padding: 18px;
}

.report-left,
.report-right {
  display: grid;
  gap: 14px;
  align-content: start;
}

.report-card {
  border: 1px solid #adc4de;
  border-radius: 12px;
  background: #f4f7fb;
  padding: 14px;
}

.report-card legend {
  font-size: 38px;
  font-weight: 800;
  color: #153d8e;
  padding: 0 4px;
}

.report-card h2 {
  margin: 0 0 10px;
  font-size: 40px;
  color: #153d8e;
}

.report-card label {
  display: block;
  font-size: 33px;
  margin: 8px 0 6px;
}

.report-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.report-route-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: center;
}

.report-arrow {
  font-size: 32px;
  color: #1a4b9b;
}

.report-page input,
.report-page textarea,
.report-page select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #aec3da;
  border-radius: 9px;
  background: #fff;
  font-size: 30px;
}


.report-help {
  margin: 8px 0 0;
  color: #233d63;
  font-size: 20px;
}


.report-submit-btn {
  width: 100%;
  border: none;
  border-radius: 10px;
  background: linear-gradient(180deg, #ffb20a 0%, #ef9b00 100%);
  color: #fff;
  font-weight: 800;
  font-size: 36px;
  padding: 12px 14px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(242, 156, 0, 0.35);
}

.report-footerbar {
  background: #1858b9;
  color: #e8f2ff;
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 23px;
}

@media (max-width: 1200px) {
  .report-brand {
    font-size: 34px;
  }

  .report-layout {
    grid-template-columns: 1fr;
  }

  .report-card legend,
  .report-card h2 {
    font-size: 30px;
  }

  .report-card label,
  .report-page input,
  .report-page textarea,
  .report-page select,
  .report-check-row {
    font-size: 19px;
  }

  .report-submit-btn {
    font-size: 24px;
  }

  .report-footerbar {
    font-size: 14px;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  .report-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .report-two-col,
  .report-route-row {
    grid-template-columns: 1fr;
  }

  .report-arrow {
    display: none;
  }
}

/* Visual polish overrides */
:root {
  --ui-blue-900: #123f86;
  --ui-blue-700: #1a5ec2;
  --ui-blue-500: #2f79d2;
  --ui-ink: #10243e;
  --ui-muted: #355173;
  --ui-panel: #f4f8fc;
  --ui-line: #b4c7db;
  --ui-warm: #f2a300;
}

.landing-body,
.report-page {
  color: var(--ui-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.landing-topbar,
.report-topbar {
  background: linear-gradient(120deg, #174c9f 0%, #1f63c8 100%);
  box-shadow: 0 6px 20px rgba(12, 43, 95, 0.18);
}

.landing-brand,
.report-brand {
  letter-spacing: 0.2px;
  font-size: clamp(28px, 3.2vw, 46px);
}

.landing-subtitle,
.report-subtitle {
  font-size: 13px;
  color: #deecff;
}

.landing-logo-box,
.report-logo-box {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(169, 202, 242, 0.95);
}

.landing-nav a,
.report-back-btn {
  font-size: 14px;
  border-color: rgba(163, 200, 246, 0.9);
  background: rgba(255, 255, 255, 0.06);
}

.landing-hero {
  min-height: 380px;
  padding: clamp(24px, 4vw, 44px) clamp(16px, 3vw, 36px);
}

.landing-hero-text {
  max-width: 720px;
}

.landing-hero-text h1 {
  font-size: clamp(34px, 5vw, 64px);
  margin-bottom: 14px;
}

.landing-hero-text p {
  font-size: clamp(16px, 1.4vw, 22px);
  color: #ecf5ff;
}

.landing-hero-media {
  color: rgba(237, 247, 255, 0.8);
  font-size: clamp(24px, 4vw, 46px);
  border-color: rgba(166, 203, 243, 0.9);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
}

.landing-btn {
  font-size: 17px;
  border-radius: 12px;
}

.landing-main {
  max-width: 1280px;
}

.landing-section-head,
.landing-card,
.landing-faq details,
.report-card {
  box-shadow: 0 6px 20px rgba(16, 44, 92, 0.08);
}

.landing-section h2 {
  font-size: clamp(30px, 3.4vw, 48px);
}

.landing-section-head p {
  font-size: clamp(16px, 1.35vw, 20px);
}

.landing-card {
  padding: 14px;
}

.landing-card-icon {
  min-height: 74px;
  font-size: 15px;
}

.landing-card h3 {
  font-size: clamp(20px, 1.7vw, 28px);
}

.landing-card p,
.landing-faq p {
  font-size: clamp(14px, 1.08vw, 17px);
  line-height: 1.5;
}

.landing-step-badge {
  font-size: 12px;
}

.landing-faq summary {
  font-size: clamp(16px, 1.2vw, 20px);
}

.landing-footer,
.report-footerbar {
  background: linear-gradient(120deg, #154d9f 0%, #1d62c4 100%);
  font-size: clamp(12px, 0.95vw, 14px);
}

.report-shell {
  max-width: 1280px;
}

.report-panel {
  background: rgba(247, 251, 255, 0.88);
  border-color: #98bbdf;
}

.report-panel-head {
  padding: 16px 20px;
  background: linear-gradient(120deg, #174ea5 0%, #1f65c8 100%);
}

.report-panel-head h1 {
  font-size: clamp(32px, 3.6vw, 48px);
}

.report-panel-head p {
  font-size: clamp(15px, 1.2vw, 18px);
}

.report-layout {
  gap: 16px;
}

.report-card {
  background: #f8fbff;
  border-color: #a9c1dc;
  padding: 14px;
}

.report-card legend {
  font-size: clamp(26px, 2.2vw, 34px);
  margin-bottom: 8px;
}

.report-card h2 {
  font-size: clamp(26px, 2.2vw, 34px);
}

.report-card label {
  font-size: clamp(14px, 1vw, 17px);
  color: #153b75;
}

.report-page input,
.report-page textarea,
.report-page select {
  font-size: clamp(14px, 0.95vw, 16px);
  border-radius: 10px;
}

.report-check-row {
  font-size: clamp(15px, 1vw, 17px);
  padding: 10px 12px;
}

.report-help,
.report-submit-card p {
  font-size: clamp(14px, 0.95vw, 16px);
}

.report-anon-row {
  font-size: clamp(13px, 0.95vw, 15px);
}

.report-submit-btn {
  font-size: clamp(20px, 1.9vw, 30px);
  border-radius: 11px;
}

@media (max-width: 900px) {
  .landing-hero {
    min-height: 320px;
  }

  .report-panel-head h1 {
    font-size: 30px;
  }
}

@media (max-width: 700px) {
  .landing-hero {
    min-height: 0;
  }

  .landing-hero-media {
    min-height: 150px;
    border-radius: 12px;
  }

  .report-topbar {
    padding: 12px 14px;
  }

  .report-panel {
    border-radius: 14px;
  }

  .report-layout {
    padding: 12px;
  }
}

/* Unified style system for landing + report */
:root {
  --tw-bg: radial-gradient(circle at 72% 8%, #c6eee6 0%, #d8eaf8 52%, #b9d9f3 100%);
  --tw-topbar: linear-gradient(120deg, #174c9f 0%, #1f63c8 100%);
  --tw-panel: #f7fbff;
  --tw-card: #f8fbff;
  --tw-line: #a9c1dc;
  --tw-shadow: 0 8px 24px rgba(16, 44, 92, 0.1);
  --tw-text: #10243e;
  --tw-muted: #365276;
}

.landing-body,
.report-page {
  background:
    linear-gradient(rgba(212, 230, 248, 0.82), rgba(212, 230, 248, 0.82)),
    url('../images/bg.jpg') center / cover no-repeat;
  color: var(--tw-text);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.landing-topbar,
.report-topbar {
  background: var(--tw-topbar);
  padding: 14px 18px;
}

.landing-nav {
  margin-right: 6px;
}

.report-back-btn {
  margin-right: 6px;
}

.landing-brand,
.report-brand {
  font-size: clamp(28px, 3vw, 42px);
}

.landing-subtitle,
.report-subtitle {
  font-size: 13px;
  color: #e1eeff;
}

.landing-logo-box,
.report-logo-box {
  width: 52px;
  height: 52px;
}

.landing-main,
.report-shell {
  max-width: 1280px;
}

.landing-main,
.report-shell {
  flex: 1 0 auto;
  width: 100%;
}

.landing-section-head,
.landing-card,
.landing-faq details,
.report-panel,
.report-card {
  background: var(--tw-card);
  border: 1px solid var(--tw-line);
  box-shadow: var(--tw-shadow);
}

.landing-section-head p,
.landing-card p,
.landing-faq p,
.report-help,
.report-submit-card p {
  color: var(--tw-muted);
}

.landing-btn,
.report-submit-btn {
  background: linear-gradient(180deg, #ffb20a 0%, #ef9b00 100%);
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(242, 156, 0, 0.35);
}

.landing-footer,
.report-footerbar {
  background: var(--tw-topbar);
  color: #e8f2ff;
}

/* Mobile refinement */
@media (max-width: 768px) {
  .landing-topbar {
    padding: 12px 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .report-topbar {
    padding: 12px 14px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .landing-brand-wrap,
  .report-brand-wrap {
    gap: 10px;
  }

  .landing-logo-box,
  .report-logo-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 14px;
  }

  .landing-brand,
  .report-brand {
    font-size: 28px;
  }

  .landing-nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .landing-nav a,
  .report-back-btn {
    text-align: center;
    padding: 10px 12px;
  }

  .report-back-btn {
    margin-left: auto;
    margin-right: 2px;
  }

  .landing-hero {
    padding: 18px 14px;
    min-height: 240px;
    position: relative;
    overflow: hidden;
  }

  .landing-hero-media {
    position: absolute;
    inset: 0;
    min-height: 0;
    border-radius: 0;
    margin-bottom: 0;
  }

  .landing-hero-text h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .landing-hero-text p {
    font-size: 15px;
  }

  .landing-main,
  .report-shell {
    margin: 14px auto 18px;
    padding: 0 10px;
  }

  .landing-section {
    margin-bottom: 16px;
  }

  .landing-section-head,
  .landing-card,
  .report-card {
    border-radius: 12px;
    padding: 12px;
  }

  .landing-grid.five,
  .landing-grid.four {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .landing-card-icon {
    min-height: 58px;
    margin-bottom: 10px;
  }

  .landing-footer,
  .report-footerbar {
    padding: 10px 12px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 12px;
  }

  .report-panel {
    border-radius: 14px;
  }

  .report-panel-head {
    padding: 12px 14px;
  }

  .report-panel-head h1 {
    font-size: 28px;
  }

  .report-panel-head p {
    font-size: 14px;
  }

  .report-layout {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .report-card legend,
  .report-card h2 {
    font-size: 24px;
  }

  .report-card label {
    font-size: 14px;
  }

  .report-two-col,
  .report-route-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .report-arrow {
    display: none;
  }

  .report-page input,
  .report-page textarea,
  .report-page select,
  .report-check-row {
    font-size: 16px;
  }

  .report-submit-btn {
    font-size: 20px;
    padding: 11px 12px;
  }
}


/* Admin page */
.admin-v1 .admin-top-actions {
  display: flex;
  gap: 8px;
}

.admin-v1 .report-shell {
  max-width: 1440px;
}

.admin-v1 .report-panel-head p code {
  background: rgba(255, 255, 255, 0.18);
  padding: 2px 6px;
  border-radius: 6px;
}

.admin-v1 .admin-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 20px 10px;
}

.admin-v1 .admin-stat {
  background: #f8fbff;
  border: 1px solid #aac2dd;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(17, 50, 98, 0.08);
}

.admin-v1 .admin-stat h2 {
  margin: 0;
  font-size: 18px;
  color: #2f507d;
}

.admin-v1 .admin-stat strong {
  display: block;
  margin-top: 6px;
  font-size: 40px;
  color: #153f81;
}

.admin-v1 .admin-toolbar {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 10px;
  padding: 8px 20px 16px;
  position: sticky;
  top: 0;
  z-index: 5;
  background: #edf5ff;
  border-top: 1px solid #c4d7ee;
  border-bottom: 1px solid #c4d7ee;
}

.admin-v1 .admin-toolbar input,
.admin-v1 .admin-toolbar select {
  width: 100%;
  border: 1px solid #a9c3df;
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  font-size: 17px;
}

.admin-v1 .admin-btn {
  font-size: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: none;
}

.admin-v1 .admin-btn.danger {
  background: linear-gradient(180deg, #e14a57 0%, #c13340 100%);
}

.admin-v1 .admin-list-wrap {
  padding: 0 20px 20px;
}

.admin-v1 .admin-quick-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px 20px 12px;
  background: #f3f8ff;
  border-bottom: 1px solid #c6d8ee;
}

.admin-v1 .admin-quick-tabs button {
  border: 1px solid #a8c2e0;
  border-radius: 999px;
  background: #fff;
  color: #23508c;
  font-weight: 700;
  padding: 7px 12px;
  cursor: pointer;
}

.admin-v1 .admin-quick-tabs button.active {
  background: #1f62c6;
  border-color: #1f62c6;
  color: #fff;
}

.admin-v1 .admin-empty {
  margin: 0;
  color: #4a678d;
  font-size: 17px;
}

.admin-v1 .admin-list {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.admin-v1 .admin-item {
  border: 1px solid #aac3df;
  border-radius: 14px;
  background: #fbfdff;
  padding: 14px 16px;
}

.admin-v1 .admin-item header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: baseline;
  margin-bottom: 8px;
}

.admin-v1 .admin-item header strong {
  color: #163f7b;
  font-size: 20px;
}

.admin-v1 .admin-item header span {
  color: #5a7495;
  font-size: 14px;
}

.admin-v1 .admin-item p {
  margin: 4px 0;
  color: #2f4e77;
  font-size: 16px;
}

.admin-v1 .admin-review-row {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.admin-v1 .admin-compact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.admin-v1 .admin-status-pill {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  background: #e8f1ff;
  border: 1px solid #b6cbed;
  color: #1c4a89;
  font-size: 13px;
  font-weight: 700;
}

.admin-v1 .admin-status-pill.status-pending {
  background: #fff4d9;
  border-color: #ebd18f;
  color: #8a5c00;
}

.admin-v1 .admin-status-pill.status-in-review {
  background: #e9f2ff;
  border-color: #b7d0ef;
  color: #1d4f91;
}

.admin-v1 .admin-status-pill.status-reviewed {
  background: #e6f8ed;
  border-color: #a8dcb7;
  color: #1b6a32;
}

.admin-v1 .admin-toggle-update {
  border: 1px solid #9ebde6;
  border-radius: 10px;
  padding: 8px 12px;
  background: #fff;
  color: #1c4f95;
  font-weight: 700;
  cursor: pointer;
}

.admin-v1 .admin-toggle-details {
  border: 1px solid #9ebde6;
  border-radius: 10px;
  padding: 8px 12px;
  background: #fff;
  color: #1c4f95;
  font-weight: 700;
  cursor: pointer;
}

.admin-v1 .admin-update-panel[hidden] {
  display: none;
}

.admin-v1 .admin-review-row label,
.admin-v1 .admin-note-label {
  color: #234b85;
  font-size: 14px;
  font-weight: 700;
}

.admin-v1 .admin-status,
.admin-v1 .admin-note {
  width: 100%;
  border: 1px solid #a9c3df;
  border-radius: 10px;
  background: #fff;
  padding: 10px 12px;
  font-size: 15px;
}

.admin-v1 .admin-note {
  resize: vertical;
  min-height: 84px;
  margin-top: 6px;
}

.admin-v1 .admin-item-actions {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.admin-v1 .admin-item-actions span {
  color: #5d7696;
  font-size: 13px;
}

.admin-v1 .admin-item-save {
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  background: linear-gradient(120deg, #1750aa 0%, #2170cc 100%);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.admin-v1 .admin-load-more {
  margin: 12px auto 0;
  display: inline-flex;
  border: 1px solid #98b7de;
  border-radius: 11px;
  padding: 10px 16px;
  background: #fff;
  color: #1d4e91;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width: 980px) {
  .admin-v1 .admin-toolbar {
    grid-template-columns: 1fr 1fr;
    position: static;
  }

  .admin-v1 .admin-stats {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .admin-v1 .admin-top-actions {
    width: auto;
  }

  .admin-v1 .admin-top-actions .report-back-btn {
    flex: 0 0 auto;
    text-align: center;
    font-size: 13px;
    padding: 8px 10px;
  }

  .admin-v1 .admin-toolbar {
    grid-template-columns: 1fr;
  }

  .admin-v1 .admin-stat strong {
    font-size: 34px;
  }

  .admin-v1 .admin-item header strong {
    font-size: 18px;
  }

  .admin-v1 .admin-item p,
  .admin-v1 .admin-empty {
    font-size: 15px;
  }

  .admin-v1 .admin-item-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Final footer fix */
.landing-footer,
.report-footerbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  min-height: 54px;
  line-height: 1.4;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  flex-wrap: wrap;
}

.landing-footer span:first-child,
.report-footerbar span:first-child {
  flex: 1 1 auto;
}

.landing-footer span:last-child,
.report-footerbar span:last-child {
  margin-left: auto;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .landing-footer,
  .report-footerbar {
    padding: 10px 12px;
    min-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}


/* Report v3 redesign */
.report-v3 .report-layout {
  grid-template-columns: 1.7fr 1fr;
  gap: 16px;
}

.report-v3 .report-progress {
  padding: 12px 16px;
}

.report-v3 .report-progress button {
  border: 1px solid #b4cbe7;
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  color: #275085;
  font-weight: 700;
  cursor: pointer;
}

.report-v3 .report-progress button.active {
  background: #f29e00;
  border-color: #f29e00;
  color: #fff;
}

.report-v3 .step-panel {
  animation: fadeUp 0.22s ease;
}

.report-v3 .report-step-divider {
  height: 1px;
  border-radius: 999px;
  background: #f0b74d;
  margin: 10px 0 12px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.report-v3 .issue-pill span b {
  display: inline-block;
  margin-right: 6px;
  color: #153e78;
}

.report-v3 .issue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.report-v3 .issue-pill {
  position: relative;
  display: block;
  cursor: pointer;
}

.report-v3 .issue-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.report-v3 .issue-pill span {
  display: block;
  border: 1px solid #a8c3df;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  font-size: 17px;
  color: #1d477f;
  font-weight: 700;
  transition: all 0.15s ease;
}

.report-v3 .issue-pill input:focus-visible + span {
  outline: 2px solid #1f62c6;
  outline-offset: 2px;
}

.report-v3 .issue-pill input:checked + span b {
  color: #fff;
}

.report-v3 .field-hint {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  color: #6180a5;
}

.report-v3 input.invalid,
.report-v3 textarea.invalid {
  border-color: #d9424f;
  background: #fff7f8;
}

.report-v3 .error-text {
  color: #b32433;
  font-weight: 700;
}

.report-v3 .wizard-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.report-v3 .wizard-actions .report-submit-btn {
  width: auto;
  font-size: 22px;
  padding: 12px 22px;
}

.report-v3 .step-btn {
  border: 1px solid #98b8df;
  background: #fff;
  color: #1f4f8f;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
}

.report-v3 .step-btn.primary {
  background: linear-gradient(120deg, #1750aa 0%, #2170cc 100%);
  border-color: #1f62c6;
  color: #fff;
}

.report-v3 .step-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.report-v3 .preview-card {
  padding: 12px;
}

.report-v3 .preview-card .summary-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.report-v3 .preview-card .summary-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding-bottom: 6px;
  border-bottom: 1px dashed #c6d7ea;
}

.report-v3 .report-layout.step-four-active .preview-card {
  padding: 14px;
}

.report-v3 .report-layout.step-four-active .preview-card .summary-list {
  gap: 12px;
}

.report-v3 .report-layout.step-four-active .preview-card .summary-list li {
  padding-bottom: 8px;
}

.report-v3 .file-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.report-v3 .file-preview img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #b8cde4;
}

.report-v3 .report-confirm {
  margin: 16px;
  border: 1px solid #a7c2df;
  border-radius: 14px;
  background: #f8fbff;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(16, 44, 92, 0.1);
}

.report-v3 .report-confirm h2 {
  margin-top: 0;
  color: #124182;
}

@media (max-width: 980px) {
  .report-v3 .report-layout {
    grid-template-columns: 1fr;
  }

  .report-v3 .report-right {
    order: 2;
  }
}

@media (max-width: 768px) {
  .report-v3 .report-progress {
    grid-template-columns: 1fr 1fr;
  }

  .report-v3 .issue-grid {
    grid-template-columns: 1fr;
  }

  .report-v3 .report-progress button {
    font-size: 13px;
    padding: 7px 10px;
  }

  .report-v3 .wizard-actions {
    flex-wrap: wrap;
  }

  .report-v3 .wizard-actions .step-btn,
  .report-v3 .wizard-actions .report-submit-btn {
    flex: 1;
    min-width: 120px;
  }
}

/* Report theme override */
.report-v3 {
  --brand-900: #124182;
  --brand-700: #1f62c6;
  --brand-600: #2f78d8;
  --brand-100: #d9e7fb;
  --brand-050: #f8fbff;
}

.report-v3 .report-topbar {
  background: linear-gradient(120deg, #124182 0%, #1f62c6 55%, #2f78d8 100%);
}

.report-v3 .report-back-btn,
.report-v3 .report-progress button,
.report-v3 .step-btn {
  border-color: #b8cde4;
  color: var(--brand-900);
}

.report-v3 .report-back-btn {
  background: #eef4ff;
  border-color: #d4e2f6;
  color: var(--brand-900);
  box-shadow: 0 8px 18px rgba(12, 46, 95, 0.16);
}

.report-v3 .report-back-btn:hover {
  background: #e3edfb;
  border-color: #c9dcf5;
}

.report-v3 .report-progress button.active {
  background: linear-gradient(120deg, #ffbe26 0%, #f29e00 100%);
  border-color: #f0b74d;
  color: #fff;
}

.report-v3 .step-btn.primary,
.report-v3 .report-submit-btn {
  background: linear-gradient(120deg, #ffbe26 0%, #f29e00 100%);
  border-color: #f0b74d;
  color: #fff;
}

.report-v3 .report-card,
.report-v3 .report-confirm,
.report-v3 .preview-card {
  border-color: #b8cde4;
  background: #f8fbff;
}

.report-v3 .report-card h2,
.report-v3 .report-card h3,
.report-v3 .report-panel-head h1,
.report-v3 .issue-pill span b {
  color: var(--brand-900);
}

.report-v3:not(.auth-page) .report-panel-head h1 {
  color: #fff;
}

.report-v3 .issue-pill input:checked + span {
  background: linear-gradient(120deg, #1f62c6 0%, #2f78d8 100%);
  border-color: #1f62c6;
  color: #fff;
}

.report-v3 input:focus,
.report-v3 textarea:focus,
.report-v3 select:focus {
  border-color: #1f62c6;
  box-shadow: 0 0 0 3px rgba(31, 98, 198, 0.18);
}

/* Landing header action links */
.landing-nav a.landing-auth-link,
.landing-nav a.landing-reports-link {
  background: linear-gradient(120deg, #ffbe26 0%, #f29e00 100%);
  border-color: #f4bf58;
  color: #fff;
  box-shadow: 0 8px 18px rgba(242, 158, 0, 0.28);
}

.landing-nav a.landing-auth-link:hover,
.landing-nav a.landing-reports-link:hover {
  border-color: #f8d186;
  box-shadow: 0 10px 22px rgba(242, 158, 0, 0.35);
}

/* Login/register specific blue overrides */
.auth-page.report-v3 .report-topbar {
  background: linear-gradient(120deg, #0f3f95 0%, #1b58b8 55%, #2f78d8 100%);
}

.auth-page.report-v3 .report-brand,
.auth-page.report-v3 .report-subtitle {
  color: #ffffff;
}

.auth-page.report-v3 .report-panel-head h1,
.auth-page.report-v3 .report-panel-head p {
  color: #124182;
}

.auth-page.report-v3 .report-shell {
  width: min(860px, 100%);
  margin-inline: auto;
  padding: 22px 14px 28px;
}

.auth-page.report-v3 .auth-panel {
  max-width: 560px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid #b8cbe4;
  border-radius: 16px;
  background: #f8fbff;
  box-shadow: 0 14px 28px rgba(12, 46, 95, 0.14);
}

.auth-page.report-v3 .report-panel-head {
  margin: 0;
  padding: 18px 20px;
  border: 0;
  background: linear-gradient(120deg, #1049a0 0%, #2f78d8 100%);
}

.auth-page.report-v3 .report-panel-head h1,
.auth-page.report-v3 .report-panel-head p {
  color: #fff;
}

.auth-page.report-v3 .auth-fields {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.auth-page.report-v3 .auth-fields label {
  font-size: 14px;
  font-weight: 700;
  color: #123f77;
}

.auth-page.report-v3 .auth-fields input {
  border: 1px solid #b7cae0;
  border-radius: 11px;
  padding: 12px 13px;
  font-size: 15px;
  color: #143f76;
  background: #fff;
}

.auth-page.report-v3 .auth-fields input:focus {
  border-color: #1f62c6;
  box-shadow: 0 0 0 3px rgba(31, 98, 198, 0.18);
}

label.show-pw-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 13px !important;
  font-weight: normal !important;
  color: #5a7aaa !important;
  cursor: pointer;
  margin-top: -4px;
  user-select: none;
}

label.show-pw-row input[type="checkbox"] {
  width: 16px !important;
  height: 16px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 3px !important;
  box-shadow: none !important;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: #1f62c6;
}

.auth-page.report-v3 .report-submit-btn {
  width: 100%;
  margin-top: 8px;
  border: 1px solid #f0b74d;
  background: linear-gradient(120deg, #ffbe26 0%, #f29e00 100%);
  color: #fff;
  box-shadow: 0 10px 20px rgba(242, 158, 0, 0.3);
}

.auth-page.report-v3 .report-back-btn {
  background: #ffffff;
  border-color: #ffffff;
  color: #124182;
  box-shadow: 0 8px 18px rgba(10, 37, 81, 0.2);
}

.auth-page.report-v3 .report-back-btn:hover {
  background: #eef4ff;
  border-color: #eef4ff;
}

.auth-page.report-v3 .auth-note {
  margin: 4px 0 0;
  font-size: 14px;
  color: #35577f;
}

.auth-page.report-v3 .auth-note a {
  color: #0e4aa5;
  font-weight: 700;
}


@media (max-width: 768px) {
  .auth-page.report-v3 .report-shell {
    padding: 14px 10px 20px;
  }

  .auth-page.report-v3 .report-panel-head {
    padding: 14px 14px;
  }

  .auth-page.report-v3 .auth-fields {
    padding: 14px;
  }
}

/* My Reports page */
.my-reports-v1 .report-shell {
  max-width: 1100px;
}

.my-reports-v1 .my-reports-wrap {
  padding: 16px 18px 20px;
  display: grid;
  gap: 12px;
}

.my-reports-v1 .my-reports-summary {
  display: flex;
  align-items: baseline;
  gap: 8px;
  color: #194583;
}

.my-reports-v1 .my-reports-summary strong {
  font-size: 28px;
  line-height: 1;
}

.my-reports-v1 .my-reports-summary span {
  color: #35577f;
  font-weight: 700;
}

.my-reports-v1 .my-reports-empty {
  margin: 0;
  border: 1px dashed #b6cde7;
  border-radius: 12px;
  background: #f8fbff;
  color: #3c5f89;
  padding: 12px 14px;
}

.my-reports-v1 .my-reports-list {
  display: grid;
  gap: 10px;
}

.my-reports-v1 .my-reports-item {
  border: 1px solid #aac3df;
  border-radius: 14px;
  background: #fbfdff;
  padding: 14px 16px;
}

.my-reports-v1 .my-reports-item header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 8px;
}

.my-reports-v1 .my-reports-item header strong {
  color: #153f81;
  font-size: 19px;
}

.my-reports-v1 .my-reports-item header span {
  color: #5c7696;
  font-size: 14px;
}

.my-reports-v1 .my-reports-item p {
  margin: 5px 0;
  color: #2f4f78;
}

.my-reports-v1 .my-reports-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid #b6cbed;
  background: #e8f1ff;
  color: #1c4a89;
  font-size: 13px;
  font-weight: 700;
}

.my-reports-v1 .my-reports-status.status-pending {
  background: #fff4d9;
  border-color: #ebd18f;
  color: #8a5c00;
}

.my-reports-v1 .my-reports-status.status-in-review {
  background: #e9f2ff;
  border-color: #b7d0ef;
  color: #1d4f91;
}

.my-reports-v1 .my-reports-status.status-reviewed {
  background: #e6f8ed;
  border-color: #a8dcb7;
  color: #1b6a32;
}

@media (max-width: 768px) {
  .my-reports-v1 .my-reports-wrap {
    padding: 12px;
  }

  .my-reports-v1 .my-reports-item header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Auth hero banner */
.auth-hero {
  background: linear-gradient(135deg, #0c2f72 0%, #1549a8 45%, #2667cc 78%, #3782e0 100%);
  text-align: center;
  padding: 36px 20px 32px;
  position: relative;
  overflow: hidden;
}

.auth-hero::before,
.auth-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.auth-hero::before {
  width: 320px;
  height: 320px;
  top: -120px;
  right: -60px;
}

.auth-hero::after {
  width: 200px;
  height: 200px;
  bottom: -80px;
  left: -40px;
}

.auth-hero-inner {
  position: relative;
  z-index: 1;
}

.auth-hero-badge {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  padding: 5px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b8d6ff;
  margin-bottom: 12px;
}

.auth-hero-title {
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 1;
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
}

.auth-hero-tagline {
  margin: 10px 0 0;
  font-size: clamp(13px, 1.4vw, 16px);
  color: #a8ccf0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .auth-hero {
    padding: 24px 16px 20px;
  }
}
