﻿/* â”€â”€ Jessica MKT â€” Editorial Clean Design System â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* Fonts: Fraunces (display), Newsreader (body), IBM Plex Mono (labels) */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300..600;1,9..144,300..600&family=Newsreader:ital,opsz,wght@0,6..72,300..500;1,6..72,300..500&family=IBM+Plex+Mono:wght@400;500&display=swap');

:root {
  /* Backgrounds */
  --bg:             #eef1f8;
  --surface:        #ffffff;
  --card:           #ffffff;

  /* Borders & Shadows */
  --border:         #dfe3ec;
  --border-active:  #c2510f;
  --shadow-sm:      0 1px 3px rgba(0,0,0,0.04);
  --shadow-md:      0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg:      0 8px 24px rgba(0,0,0,0.09);

  /* Text */
  --text:           #23211c;
  --muted:          #6f6a5e;
  --light:          #9a958c;

  /* Accent â€” burnt orange */
  --accent:         #c2510f;
  --accent-hover:   #a8430c;
  --accent-bg:      rgba(194,81,15,0.07);
  --accent-ring:    rgba(194,81,15,0.18);

  /* Semantic */
  --ok:             #0f766e;
  --ok-bg:          #ecfdf5;
  --warn:           #b45309;
  --warn-bg:        #fffbeb;
  --danger:         #dc2626;
  --danger-bg:      #fef2f2;

  /* Radius */
  --radius-sm:      6px;
  --radius:         12px;
  --radius-lg:      16px;
  --radius-full:    9999px;

  /* Typography */
  --font-display:   'Fraunces', serif;
  --font-body:      'Newsreader', serif;
  --font-mono:      'IBM Plex Mono', monospace;

  /* Transitions */
  --ease:           cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* Custom Scrollbars */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: rgba(0,0,0,0.2); }

::selection { background: var(--accent); color: #fff; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color .2s var(--ease);
}
a:hover { color: var(--accent-hover); }

/* â”€â”€ TOPBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  height: 62px;
  padding: 0 32px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  gap: 32px;
}

.topbar .brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.topbar .brand span {
  color: var(--accent);
  font-weight: 600;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.topbar nav a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 450;
  color: var(--muted);
  padding: 7px 16px;
  border-radius: var(--radius-full);
  transition: all .2s var(--ease);
  white-space: nowrap;
}

.topbar nav a:hover {
  background: rgba(0,0,0,0.03);
  color: var(--text);
}

.topbar nav a.on {
  background: var(--accent-bg);
  color: var(--accent);
  font-weight: 500;
}

.topbar .topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.topbar .logout {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: all .2s var(--ease);
}

.topbar .logout:hover {
  background: var(--danger-bg);
  color: var(--danger);
}

/* â”€â”€ LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 32px 40px;
}

/* â”€â”€ HEADINGS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 420;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 { font-size: 28px; }
h2 { font-size: 20px; }
h3 { font-size: 17px; }

/* â”€â”€ METRICS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.metric {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.metric:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.metric span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  margin-bottom: 8px;
}

.metric strong {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 500;
  color: var(--text);
  letter-spacing: -0.02em;
}

.warn { color: var(--warn) !important; }

/* â”€â”€ SECTIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}

.section-head h2 {
  font-size: 20px;
  font-weight: 420;
}

.muted { color: var(--muted); font-size: 13px; }

/* â”€â”€ CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s var(--ease);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card.empty {
  color: var(--muted);
  text-align: center;
  padding: 48px;
  font-weight: 450;
  font-style: italic;
}

/* â”€â”€ ROWS (Triage list) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.row-main {
  flex: 1;
  min-width: 0;
}

.row-title {
  margin-bottom: 4px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 450;
  color: var(--text);
}

.row-sub {
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.row-fields {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.row-actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.row-actions.inline {
  flex-direction: row;
  display: inline-flex;
  margin-left: 12px;
  vertical-align: middle;
}

/* â”€â”€ FORMS & CONTROLS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
input, select, button {
  font-family: var(--font-body);
  font-size: 14px;
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: #ffffff;
  color: var(--text);
  outline: none;
  transition: all .2s var(--ease);
  font-weight: 450;
}

input:focus, select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-ring);
}

button {
  cursor: pointer;
  background: #ffffff;
  border-radius: var(--radius-full);
  font-weight: 500;
  padding: 9px 20px;
}

button:hover {
  background: #f5f5f7;
  border-color: #c5c5c7;
}

button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

button.primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}

button.ghost {
  background: transparent;
  color: var(--muted);
  border-color: transparent;
}

button.ghost:hover {
  background: rgba(0,0,0,0.03);
  color: var(--text);
}

button.small {
  padding: 5px 14px;
  font-size: 12px;
}

/* â”€â”€ BADGES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  margin-right: 6px;
}

.badge.approved, .badge.done {
  background: var(--ok-bg);
  color: var(--ok);
}

.badge.rejected {
  background: var(--danger-bg);
  color: var(--danger);
}

.badge.negotiating, .badge.waiting {
  background: var(--warn-bg);
  color: var(--warn);
}

.badge.doing {
  background: var(--accent-bg);
  color: var(--accent);
}

/* â”€â”€ LISTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
ul.plain { list-style: none; }

ul.plain li {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

ul.plain li:last-child { border-bottom: none; }

.amount {
  float: right;
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--text);
}

.amount.strike {
  text-decoration: line-through;
  color: var(--muted);
  font-weight: 400;
}

/* â”€â”€ CLIENT / MISC â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.client-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.inline-form {
  display: flex;
  gap: 12px;
  align-items: center;
}

.inline-form input { flex: 1; }

.crumbs {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

/* â”€â”€ TABLES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

th {
  text-align: left;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

tr:last-child td { border-bottom: none; }

tr:hover td {
  background: rgba(0,0,0,0.015);
}

.note { margin-top: 10px; }

/* â”€â”€ LOGIN â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
body.center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: radial-gradient(ellipse at top, rgba(194,81,15,0.06) 0%, var(--bg) 60%);
}

.login {
  width: 370px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.login h1 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 420;
  letter-spacing: -0.02em;
}

.login h1 span { color: var(--accent); }

.login p {
  color: var(--muted);
  font-size: 14px;
}

.error {
  color: var(--danger);
  font-size: 12px;
  font-weight: 500;
}

/* â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 860px) {
  .topbar {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 16px;
    gap: 8px;
  }
  .topbar nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    gap: 2px;
    padding-bottom: 4px;
  }
  .topbar nav a {
    font-size: 13px;
    padding: 6px 12px;
  }
  main {
    padding: 20px 16px;
  }
  .row {
    flex-direction: column;
  }
  .metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .metrics {
    grid-template-columns: 1fr;
  }
}

/* â”€â”€ UTILITIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.scroll-x { overflow-x: auto; }

table.compact { font-size: 12px; }
table.compact th, table.compact td { padding: 6px 8px; white-space: nowrap; }

.ok-cell {
  background: var(--ok-bg);
  color: var(--ok);
  text-align: center;
  font-weight: 500;
}

.off-cell {
  color: var(--muted);
  text-align: center;
}

/* â”€â”€ MODAL / PREVIEW AO VIVO DE RELATÃ“RIO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-relatorio-btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-bg);
  border: 1px solid var(--accent-ring);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  transition: all .2s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-relatorio-btn:hover {
  background: var(--accent);
  color: #ffffff;
  border-color: var(--accent);
}

.badge-preview-tag {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--accent);
  color: #ffffff;
  padding: 2px 6px;
  border-radius: var(--radius-full);
}

.nav-relatorio-btn:hover .badge-preview-tag {
  background: #ffffff;
  color: var(--accent);
}

/* â”€â”€ Apple Design Language â€” Report Modal â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

.report-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.report-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.report-modal-container {
  width: 90%;
  max-width: 780px;
  max-height: 86vh;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 24px 80px -12px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.report-modal-overlay.open .report-modal-container {
  transform: translateY(0) scale(1);
}

.report-modal-header {
  padding: 12px 20px;
  background: rgba(245, 245, 247, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.report-modal-header-title {
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #86868b;
  display: flex;
  align-items: center;
  gap: 6px;
}

.report-modal-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.apple-btn-secondary {
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #1d1d1f;
  background: rgba(0, 0, 0, 0.04);
  border: none;
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s ease;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
}

.apple-btn-secondary:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #1d1d1f;
}

.apple-btn-close {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.04);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #86868b;
  transition: all 0.15s ease;
}

.apple-btn-close:hover {
  background: rgba(0, 0, 0, 0.08);
  color: #1d1d1f;
}

.report-modal-body {
  padding: 40px 44px 36px;
  overflow-y: auto;
}

.apple-doc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
}

.apple-doc-title {
  font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #1d1d1f;
  line-height: 1.15;
  margin: 0;
}

.apple-doc-subtitle {
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #86868b;
  margin-top: 6px;
}

.apple-doc-meta {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-shrink: 0;
  padding-top: 4px;
}

.apple-doc-client {
  font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.02em;
}

.apple-doc-period {
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  font-size: 13px;
  color: #86868b;
}

.apple-metrics-row {
  display: flex;
  margin-bottom: 40px;
  background: #f5f5f7;
  border-radius: 12px;
  padding: 4px;
}

.apple-metric {
  flex: 1;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-radius: 10px;
}

.apple-metric:first-child {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.apple-metric-label {
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #86868b;
}

.apple-metric-value {
  font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.03em;
  line-height: 1;
}

.apple-metric-positive { color: #34c759; }

.apple-section { margin-bottom: 36px; }

.apple-section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.08);
}

.apple-section-title {
  font-family: -apple-system, 'SF Pro Display', 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1d1d1f;
  letter-spacing: -0.02em;
  margin: 0;
}

.apple-section-count {
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  font-size: 13px;
  color: #86868b;
}

.apple-task-list { display: flex; flex-direction: column; }

.apple-task-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 0.5px solid rgba(0, 0, 0, 0.04);
}

.apple-task-item:last-child { border-bottom: none; }

.apple-task-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #86868b;
  margin-top: 7px;
  flex-shrink: 0;
}

.apple-dot-new { background: #34c759; }

.apple-task-content { flex: 1; min-width: 0; }

.apple-task-name {
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1d1d1f;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.apple-task-desc {
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  font-size: 13px;
  color: #86868b;
  margin-top: 3px;
  line-height: 1.45;
}

.apple-task-type {
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  font-size: 12px;
  color: #aeaeb2;
  flex-shrink: 0;
  padding-top: 2px;
}

.apple-doc-footer {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 0.5px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  font-size: 12px;
  color: #aeaeb2;
}

@media print {
  .topbar, .report-modal-header { display: none !important; }
  .report-modal-overlay { position: static; background: none; opacity: 1; pointer-events: auto; backdrop-filter: none; }
  .report-modal-container { box-shadow: none; max-width: 100%; border-radius: 0; }
}

