/* Die Morgenlage — Sunrise Theme v4 */

:root {
  --sunrise-3: #c44e1a;
  --sunrise-4: #e8720c;
  --sunrise-5: #f5a623;
  --sunrise-6: #ffd06b;
  --primary: #e8720c;
  --primary-light: #fff3e0;
  --primary-dark: #c44e1a;
  --bg: #fffbf5;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --border: #f0e6d9;
  --success: #10b981;
  --gradient-warm: linear-gradient(135deg, var(--sunrise-3) 0%, var(--sunrise-4) 40%, var(--sunrise-5) 100%);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 20px rgba(232,114,12,0.06);
  --shadow-lg: 0 8px 40px rgba(232,114,12,0.1);
  --radius: 12px;
  --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg, #fff8f0 0%, var(--bg) 40%, #fef7ee 100%);
  color: var(--text); line-height: 1.6;
  -webkit-font-smoothing: antialiased; min-height: 100vh;
}

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; background: rgba(255,251,245,0.92); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(232,114,12,0.08); }
.nav-inner { max-width: 1100px; margin: 0 auto; padding: 0.7rem 2rem; display: flex; align-items: center; justify-content: space-between; }
.nav-logo { font-size: 1.1rem; font-weight: 800; color: var(--text); text-decoration: none; display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.15s; }
.nav-links a:hover { color: var(--primary); }
@media (max-width: 640px) { .nav-links a:not(.btn) { display: none; } }

/* HERO */
.hero {
  min-height: 92vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 6rem 2rem 3rem; position: relative;
  background: radial-gradient(ellipse at 50% 120%, rgba(245,166,35,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(232,114,12,0.06) 0%, transparent 50%);
}
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: linear-gradient(135deg, rgba(232,114,12,0.08), rgba(245,166,35,0.12)); color: var(--primary); padding: 0.5rem 1.2rem; border-radius: 50px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.5rem; border: 1px solid rgba(232,114,12,0.12); }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.15; max-width: 700px; margin-bottom: 1rem; }
.hero h1 span { background: var(--gradient-warm); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero > p { font-size: 1.1rem; color: var(--text-muted); max-width: 560px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero-hint { margin-top: 0.8rem; font-size: 0.8rem; color: #c0b0a0; }
.trust-bar { display: flex; gap: 1.5rem; margin-top: 2.5rem; flex-wrap: wrap; justify-content: center; }
.trust-item { font-size: 0.85rem; color: var(--text-muted); font-weight: 500; }

/* SEARCH */
.search-container { width: 100%; max-width: 560px; position: relative; }
.search-box { width: 100%; padding: 1.1rem 1.5rem; font-size: 1.05rem; border: 2px solid var(--border); border-radius: var(--radius); background: var(--surface); color: var(--text); outline: none; transition: all 0.2s; box-shadow: var(--shadow-md); font-family: inherit; }
.search-box:focus { border-color: var(--primary); box-shadow: 0 0 0 4px rgba(232,114,12,0.08), var(--shadow-md); }
.search-box::placeholder { color: #c0b0a0; }
.search-icon { position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%); color: var(--text-muted); pointer-events: none; }
.autocomplete-list { position: absolute; top: calc(100% + 4px); left: 0; right: 0; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); box-shadow: var(--shadow-lg); max-height: 320px; overflow-y: auto; z-index: 100; display: none; }
.autocomplete-list.active { display: block; }
.autocomplete-item { padding: 0.8rem 1.2rem; cursor: pointer; transition: background 0.15s; display: flex; align-items: center; gap: 0.7rem; }
.autocomplete-item:hover, .autocomplete-item.selected { background: var(--primary-light); }
.autocomplete-item .icon { font-size: 1.2rem; opacity: 0.8; flex-shrink: 0; }
.ac-name { font-size: 0.95rem; font-weight: 500; }
.ac-name strong { color: var(--primary); }
.ac-region { font-size: 0.75rem; color: var(--text-muted); }
.ac-custom { border-top: 1px solid var(--border); }
.ac-custom .ac-name { color: var(--text-muted); font-size: 0.9rem; }

/* LOADER */
.loader-overlay { display: none; position: fixed; inset: 0; background: rgba(255,251,245,0.97); backdrop-filter: blur(8px); z-index: 1000; align-items: center; justify-content: center; }
.loader-overlay.active { display: flex; }
.loader-content { text-align: center; width: 100%; max-width: 380px; padding: 2rem 1.5rem; }
.loader-sun { margin: 0 auto 1.2rem; width: 52px; height: 52px; }
.loader-sun-svg { animation: sunPulse 2s ease-in-out infinite; }
@keyframes sunPulse { 0%,100% { transform: scale(1); filter: drop-shadow(0 0 6px rgba(245,166,35,0.4)); } 50% { transform: scale(1.08); filter: drop-shadow(0 0 14px rgba(245,166,35,0.7)); } }
.sun-rays { animation: sunSpin 8s linear infinite; transform-origin: 0 0; }
@keyframes sunSpin { to { transform: rotate(360deg); } }
.loader-content h3 { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); margin-bottom: 0.25rem; }
.loader-company { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 1.2rem; }
.loader-feed { text-align: left; font-size: 0.85rem; width: 100%; }
.feed-line { padding: 0.4rem 0.75rem; border-radius: 8px; margin-bottom: 0.25rem; display: flex; align-items: center; gap: 0.15rem; }
.feed-line.pending { opacity: 0.3; color: var(--text-muted); }
.feed-line.active { opacity: 1; color: var(--primary); font-weight: 600; background: var(--primary-light); }
.feed-line.done { opacity: 0.6; color: var(--success); }
.feed-icon { flex-shrink: 0; width: 1.4em; text-align: center; }
.feed-text { flex: 1; }
.feed-dots-wrap { width: 2em; flex-shrink: 0; text-align: left; }
.feed-dots { display: inline-block; }
.feed-line.active .feed-dots::after { content: ''; display: inline-block; width: 4px; height: 4px; background: var(--primary); border-radius: 50%; animation: dotPulse 1.2s infinite; margin-left: 2px; }
@keyframes dotPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }
.loader-note { margin-top: 1rem; font-size: 0.75rem; color: #c0b0a0; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.7rem 1.4rem; border-radius: 8px; font-size: 0.9rem; font-weight: 600; cursor: pointer; border: none; transition: all 0.2s; font-family: inherit; text-decoration: none; }
.btn-sm { padding: 0.4rem 0.8rem; font-size: 0.8rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1.05rem; }
.btn-primary { background: var(--gradient-warm); color: white; box-shadow: 0 2px 12px rgba(232,114,12,0.25); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(232,114,12,0.35); }
.btn-secondary { background: var(--surface); color: var(--text); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--primary-light); border-color: rgba(232,114,12,0.2); }
.btn-back { background: none; color: var(--text-muted); padding: 0.5rem 0; font-size: 0.9rem; border: none; cursor: pointer; font-family: inherit; }
.btn-back:hover { color: var(--primary); }

/* REPORT */
.report-container { display: none; max-width: 820px; margin: 0 auto; padding: 5rem 2rem 2rem; }
.report-container.active { display: block; }
.report-header { text-align: center; padding: 2rem 0; border-bottom: 2px solid var(--border); margin-bottom: 1.5rem; }
.report-header h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.3rem; display: flex; align-items: center; justify-content: center; gap: 0.3rem; }
.report-header .subtitle { color: var(--text-muted); font-size: 0.95rem; }
.report-stats { display: flex; gap: 0.8rem; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }
.report-stat { background: var(--primary-light); padding: 0.35rem 0.8rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
.report-stat .num { color: var(--primary); }

/* TOOLBAR */
.report-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; flex-wrap: wrap; gap: 0.6rem; padding: 0.6rem 0; border-bottom: 1px solid var(--border); }
.toolbar-left { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.selection-info { font-size: 0.82rem; color: var(--text-muted); font-weight: 500; margin-right: 0.3rem; }

/* ARTICLE CARDS — Two-part design */
.article-card {
  display: flex; gap: 0; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; margin-bottom: 0.6rem;
  cursor: pointer; transition: all 0.2s; user-select: none;
}
.article-card:hover { box-shadow: var(--shadow-md); border-color: rgba(232,114,12,0.15); }
.article-card.selected { border-color: rgba(232,114,12,0.3); }
.article-card.selected .card-indicator { background: var(--gradient-warm); }
.article-card:not(.selected) { opacity: 0.5; }
.article-card:not(.selected):hover { opacity: 0.75; }

.card-left { display: flex; flex-direction: column; align-items: center; justify-content: flex-start; padding: 0.8rem 0.5rem; gap: 0.4rem; flex-shrink: 0; width: 52px; position: relative; }
.card-indicator { position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--border); border-radius: 3px 0 0 3px; transition: background 0.2s; }
.card-relevance { font-size: 0.85rem; font-weight: 800; line-height: 1; text-align: center; }
.card-relevance small { font-size: 0.55rem; font-weight: 600; }
.rel-high { color: #065f46; }
.rel-mid { color: #92400e; }
.rel-low { color: #9ca3af; }

.card-right { flex: 1; padding: 0.8rem 1rem 0.8rem 0.4rem; min-width: 0; }
.card-tags { display: flex; align-items: center; gap: 0.35rem; margin-bottom: 0.35rem; flex-wrap: wrap; }
.tag { font-size: 0.68rem; padding: 0.1rem 0.45rem; border-radius: 50px; font-weight: 600; white-space: nowrap; }
.tag-topic { background: var(--primary-light); color: var(--primary-dark); }
.tag-date { color: #b0a090; font-weight: 400; }
.tag-multi { color: var(--primary); background: rgba(232,114,12,0.06); }

.card-title { font-size: 0.95rem; font-weight: 650; line-height: 1.35; margin-bottom: 0.3rem; color: var(--text); }
.card-sources { display: flex; gap: 0.35rem; flex-wrap: wrap; margin-bottom: 0.3rem; }
.source-link { font-size: 0.75rem; color: var(--primary); text-decoration: none; background: linear-gradient(135deg, rgba(232,114,12,0.06), rgba(245,166,35,0.08)); padding: 0.12rem 0.5rem; border-radius: 50px; border: 1px solid rgba(232,114,12,0.08); transition: all 0.15s; white-space: nowrap; }
.source-link:hover { background: var(--primary); color: white; border-color: var(--primary); }
.source-redirect { opacity: 0.6; border-style: dashed; }
.source-redirect:hover { opacity: 1; }
.card-summary { font-size: 0.85rem; color: #374151; line-height: 1.5; margin-bottom: 0.25rem; }
.card-reason { font-size: 0.8rem; color: var(--primary-dark); font-style: italic; }

/* CTA */
.cta-section { text-align: center; padding: 3rem 2rem; margin-top: 2rem; background: linear-gradient(135deg, #fff8f0, var(--primary-light)); border-radius: var(--radius-lg); border: 1px solid rgba(232,114,12,0.1); }
.cta-section h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.cta-section p { color: var(--text-muted); margin-bottom: 1.5rem; }
.cta-email-form { display: flex; gap: 0.5rem; max-width: 420px; margin: 0 auto; }
.cta-email-form input { flex: 1; padding: 0.8rem 1rem; border: 2px solid var(--border); border-radius: 8px; font-size: 0.95rem; font-family: inherit; outline: none; background: var(--surface); }
.cta-email-form input:focus { border-color: var(--primary); }

/* SECTIONS */
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 3rem; text-align: center; }

/* HOW */
.how-section { padding: 5rem 2rem; max-width: 1000px; margin: 0 auto; text-align: center; }
.how-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.steps-grid { display: flex; align-items: flex-start; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.step { flex: 1; min-width: 220px; max-width: 280px; text-align: center; padding: 1.5rem; position: relative; }
.step-number { position: absolute; top: 0.5rem; left: 50%; transform: translateX(-50%); font-size: 4rem; font-weight: 900; color: rgba(232,114,12,0.05); line-height: 1; }
.step-icon { font-size: 2.5rem; margin-bottom: 0.8rem; position: relative; z-index: 1; }
.step h3 { font-size: 1.05rem; margin-bottom: 0.4rem; position: relative; z-index: 1; }
.step p { font-size: 0.9rem; color: var(--text-muted); position: relative; z-index: 1; }
.step-arrow { font-size: 1.5rem; color: var(--sunrise-5); opacity: 0.4; margin-top: 2.5rem; }
@media (max-width: 768px) { .step-arrow { display: none; } }

/* FEATURES */
.features-section { padding: 5rem 2rem; max-width: 1000px; margin: 0 auto; text-align: center; }
.features-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; text-align: left; }
.feature-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; transition: all 0.2s; }
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: rgba(232,114,12,0.12); }
.feature-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.feature-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.feature-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

/* USE CASES */
.usecases-section { padding: 5rem 2rem; max-width: 1000px; margin: 0 auto; text-align: center; }
.usecases-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 2.5rem; }
.usecases-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; text-align: left; }
.usecase-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; }
.usecase-icon { font-size: 2rem; margin-bottom: 0.6rem; }
.usecase-card h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.usecase-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.5; }

/* PRICING */
.pricing-section { padding: 5rem 2rem; text-align: center; }
.pricing-section h2 { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.2rem; max-width: 950px; margin: 0 auto; }
.pricing-two { max-width: 680px; }
.pricing-card { background: var(--surface); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; text-align: left; transition: all 0.2s; }
.pricing-card.featured { border-color: var(--primary); box-shadow: 0 8px 30px rgba(232,114,12,0.12); position: relative; }
.pricing-card.featured::before { content: 'Empfohlen'; position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--gradient-warm); color: white; padding: 0.3rem 1rem; border-radius: 50px; font-size: 0.75rem; font-weight: 700; }
.pricing-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.pricing-price { font-size: 2.2rem; font-weight: 800; margin-bottom: 0.2rem; }
.pricing-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.pricing-desc { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.pricing-features li { font-size: 0.88rem; display: flex; align-items: center; gap: 0.5rem; }
.pricing-features li::before { content: '✓'; color: var(--success); font-weight: 700; flex-shrink: 0; }
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 1.5rem; }

/* FAQ */
.faq-section { padding: 5rem 2rem; max-width: 700px; margin: 0 auto; }
.faq-section h2 { font-size: 2rem; font-weight: 800; text-align: center; margin-bottom: 2rem; }
.faq-grid { display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-item summary { padding: 1rem 1.2rem; cursor: pointer; font-weight: 600; font-size: 0.95rem; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.faq-item summary::after { content: '+'; color: var(--primary); font-size: 1.2rem; font-weight: 700; }
.faq-item[open] summary::after { content: '−'; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 1.2rem 1rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* FINAL CTA */
.final-cta { text-align: center; padding: 5rem 2rem; background: radial-gradient(ellipse at 50% 100%, rgba(245,166,35,0.08) 0%, transparent 60%); }
.final-cta h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.5rem; }
.final-cta p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.05rem; }

/* FOOTER */
footer { border-top: 1px solid var(--border); background: var(--surface); }
.footer-inner { max-width: 1000px; margin: 0 auto; padding: 3rem 2rem; display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-brand { flex: 1; min-width: 200px; }
.footer-logo { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.5rem; display: flex; align-items: center; }
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); max-width: 280px; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 0.3rem; }
.footer-col a { font-size: 0.85rem; color: var(--text-muted); text-decoration: none; }
.footer-col a:hover { color: var(--primary); }
.footer-bottom { text-align: center; padding: 1.2rem 2rem; border-top: 1px solid var(--border); }
.footer-bottom p { font-size: 0.8rem; color: #c0b0a0; }
.no-results { text-align: center; padding: 3rem; color: var(--text-muted); }
.no-results .icon { font-size: 3rem; margin-bottom: 1rem; }

/* PRINT */
@media print {
  @page { size: A4; margin: 1.8cm 2cm; }
  .nav, .hero, .features-section, .how-section, .usecases-section,
  .pricing-section, .faq-section, .final-cta, footer,
  .loader-overlay, .cta-section, .report-toolbar, .btn-back,
  .page-section { display: none !important; }
  body { background: white !important; color: #1a1a1a !important; font-size: 9.5pt !important; line-height: 1.45 !important; }
  .report-container { display: block !important; padding: 0 !important; max-width: 100% !important; }
  .report-header { border-bottom: 3pt solid #E8720C !important; padding-bottom: 0.5rem !important; margin-bottom: 0.8rem !important; text-align: left !important; }
  .report-header h2 { font-size: 15pt !important; color: #E8720C !important; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .report-header .subtitle { font-size: 9pt !important; color: #444 !important; }
  .report-stats { justify-content: flex-start !important; gap: 0.6rem !important; }
  .report-stat { padding: 0 !important; font-size: 8pt !important; background: none !important; }
  .article-card.print-hide { display: none !important; }
  .article-card:not(.selected) { display: none !important; }
  .article-card { border: none !important; border-radius: 0 !important; margin-bottom: 0.4rem !important; box-shadow: none !important; page-break-inside: avoid; cursor: default !important; opacity: 1 !important; }
  .card-left { width: 36px !important; padding: 0.3rem !important; }
  .card-indicator { display: none !important; }
  .card-relevance { font-size: 7.5pt !important; }
  .card-right { padding: 0.3rem 0.5rem !important; }
  .card-tags { margin-bottom: 0.1rem !important; }
  .tag { font-size: 6pt !important; padding: 0.05rem 0.25rem !important; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .tag-topic { background: #fff3e0 !important; color: #c44e1a !important; print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .card-title { font-size: 9.5pt !important; font-weight: 700 !important; margin-bottom: 0.1rem !important; }
  .card-sources { margin-bottom: 0.1rem !important; }
  .source-link { background: none !important; border: none !important; color: #666 !important; padding: 0 !important; font-size: 7pt !important; }
  .source-link::after { content: " (" attr(href) ")"; font-size: 5.5pt; color: #aaa; word-break: break-all; }
  .card-summary { font-size: 8.5pt !important; }
  .card-reason { font-size: 7.5pt !important; }
  .report-container::after { content: "Erstellt mit Die Morgenlage · die-morgenlage.de"; display: block; text-align: center; font-size: 7pt; color: #ccc; margin-top: 1rem; padding-top: 0.5rem; border-top: 0.5pt solid #eee; }
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .hero { padding: 5rem 1.5rem 2rem; min-height: 80vh; }
  .cta-email-form { flex-direction: column; }
  .report-container { padding: 4.5rem 1rem 1rem; }
  .report-stats { gap: 0.4rem; }
  .pricing-grid, .pricing-two { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; gap: 2rem; }
  .footer-links { gap: 2rem; }
  .card-left { width: 40px; padding: 0.5rem 0.3rem; }
  .card-right { padding: 0.6rem 0.8rem 0.6rem 0.3rem; }
  .nav-inner { padding: 0.7rem 1rem; }
  .report-toolbar { flex-direction: column; align-items: flex-start; }
  .toolbar-left { width: 100%; justify-content: space-between; }
}
