/* ==========================================================================
   DESIGN SYSTEM - CALCULADORA ODC ZÊRA
   ========================================================================== */

/* Variables & Color Tokens */
:root {
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Color Palette */
    --color-bg: #ffffff; /* White page background */
    --color-surface: #000000; /* Pure black for header and cards */
    --color-border: #e2e8f0; /* Light gray page border */
    --color-border-hover: #10b981;
    --color-text-main: #ffffff; /* White text */
    --color-text-muted: #71717a; /* Muted gray text */
    --color-text-white: #ffffff;
    
    /* Brand Accents */
    --color-primary: #ffffff; /* White primary symbols/texts */
    --color-primary-hover: #e4e4e7;
    --color-secondary: #18181b; /* Dark zinc buttons */
    --color-secondary-hover: #27272a;
    
    /* Growth Indicators (Green) */
    --color-green: #34d399; /* Bright green text/accent */
    --color-green-dark: #34d399; /* Bright green text */
    --color-green-light: #062f1e; /* Deep green background */
    --color-green-border: #10b981; /* Vibrant green border */

    /* Maturity Indicators */
    --color-baixa: #ef4444;
    --color-baixa-light: #fef2f2;
    --color-media: #f59e0b;
    --color-media-light: #fffbeb;
    --color-boa: #3b82f6;
    --color-boa-light: #eff6ff;
    --color-alta: #10b981;
    --color-alta-light: #ecfdf5;

    /* Shadows & Radii */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -4px rgba(0,0,0,0.05);
    --shadow-premium: 0 20px 25px -5px rgba(0,0,0,0.03), 0 8px 10px -6px rgba(0,0,0,0.03);
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --transition-base: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 40px;
}

/* Header */
.app-header {
    background-color: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 24px 0;
    margin-bottom: 32px;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.logo-area {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.logo-badge {
    background-color: #10b981; /* Vibrant green badge */
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    letter-spacing: 0.5px;
}

.logo-text {
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1px;
    color: var(--color-primary); /* Will be white */
}

.main-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text-main);
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.subtitle {
    font-size: 15px;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* App Container & Main Grid Layout */
.app-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1.4fr;
    gap: 24px;
    align-items: start;
}

/* Card Component */
.card {
    background-color: #000000; /* Pure black cards */
    border: 1px solid #27272a; /* Dark border for black card */
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-lg);
    border-color: #3f3f46;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    border-bottom: 1px solid #27272a;
}

.card-header h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-main);
}

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    font-size: 16px;
}

/* Current and Potential Header Themes */
.current-header .card-icon {
    background-color: #1e293b; /* Dark Slate background */
    color: #ffffff;
}

.potential-header .card-icon {
    background-color: #064e3b; /* Dark Green background */
    color: #34d399; /* Bright Green icon */
}

.results-header .card-icon {
    background-color: #78350f; /* Dark Amber background */
    color: #fbbf24; /* Bright Amber icon */
}

.opp-header .card-icon {
    background-color: #1e3a8a; /* Dark Blue background */
    color: #60a5fa; /* Bright Blue icon */
}

.maturity-header .card-icon {
    background-color: #581c87; /* Dark Purple background */
    color: #c084fc; /* Bright Purple icon */
}

.card-body {
    padding: 24px;
}

/* Input Fields */
.input-group {
    margin-bottom: 18px;
}

.input-group:last-child {
    margin-bottom: 0;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 6px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper input {
    width: 100%;
    height: 44px;
    background-color: #18181b; /* Dark background for inputs */
    border: 1px solid #27272a; /* Dark border */
    border-radius: var(--radius-md);
    padding: 0 16px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-main);
    transition: var(--transition-base);
}

.input-wrapper input:focus {
    outline: none;
    border-color: var(--color-text-main);
    background-color: var(--color-surface);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.08);
}

/* Currency input specific styles */
.currency-input input {
    padding-left: 44px;
}

.currency-symbol {
    position: absolute;
    left: 16px;
    font-size: 14px;
    font-weight: 700;
    color: var(--color-green);
    user-select: none;
    pointer-events: none;
}

.desired-input input:focus {
    border-color: var(--color-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

/* Calc indicators at the bottom of columns */
.calc-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #0d2a1d; /* Dark mint green indicator */
    padding: 12px 16px;
    border-radius: var(--radius-md);
    margin-top: 24px;
    border: 1px solid #064e3b; /* Dark green border */
}

.ind-label {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
}

.ind-value {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-green);
}

#pot-conversao-val {
    color: var(--color-green);
}

/* COLUNA 3: New Results Card Styles (Stripe/Linear Inspired) */
.results-column {
    display: flex;
    flex-direction: column;
    gap: 12px; /* reduced gap to fit stacked hierarchy beautifully */
}

/* CARD 1: Hoje */
.card-hoje {
    background-color: #0c0c0e; /* Sleek near-black background */
    border: 1px solid #1c1c1f;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-base);
}

.card-hoje:hover {
    border-color: #2e2e33;
}

.card-hoje-info {
    display: flex;
    flex-direction: column;
}

.card-hoje-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.card-hoje-desc {
    font-size: 13px;
    color: #ffffff;
    margin-top: 2px;
}

.card-hoje-val {
    font-size: 20px;
    font-weight: 700;
    color: #cbd5e1; /* soft white/gray */
}

/* Hierarchy Connector Arrow */
.hierarchy-connector {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -4px 0;
}

.hierarchy-arrow {
    color: var(--color-green-border);
    font-size: 16px;
    opacity: 0.6;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* CARD 2: Potencial Identificado */
.card-potencial-identificado {
    background: linear-gradient(135deg, #062f1e 0%, #031c12 100%);
    border: 1px solid var(--color-green-border);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
}

.card-potencial-identificado::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.card-potencial-identificado:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.25);
    border-color: #34d399;
}

.card-potencial-info {
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.card-potencial-title {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: #34d399; /* Bright green title */
    letter-spacing: 0.8px;
}

.card-potencial-desc {
    font-size: 13px;
    color: #a7f3d0; /* light mint green */
    margin-top: 4px;
}

.card-potencial-val {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    z-index: 1;
}

/* CARD 3: Novo Faturamento Potencial - PRINCIPAL KPI */
.card-novo-faturamento-potencial {
    background-color: #09090b;
    border: 2px dashed var(--color-green-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.05);
    position: relative;
    transition: var(--transition-base);
}

.card-novo-faturamento-potencial:hover {
    border-style: solid;
    border-color: #34d399;
    box-shadow: 0 8px 30px rgba(16, 185, 129, 0.12);
    transform: translateY(-2px);
}

.kpi-tag {
    position: absolute;
    top: 12px;
    background-color: #064e3b;
    color: #34d399;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
    border: 1px solid #10b981;
}

.card-novo-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 8px;
}

.card-novo-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.card-novo-desc {
    font-size: 12px;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.card-novo-val {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-green) !important; /* Always vibrant green */
    margin-top: 12px;
    text-shadow: 0 0 15px rgba(52, 211, 153, 0.2);
}

/* CARD 4: Durante o Projeto */
.card-durante-projeto {
    background-color: #0c0c0e;
    border: 1px solid #1c1c1f;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-base);
    margin-top: 4px;
}

.card-durante-projeto:hover {
    border-color: #27272a;
}

.card-projeto-info {
    display: flex;
    flex-direction: column;
}

.card-projeto-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.card-projeto-desc {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 2px;
}

.card-projeto-val {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-green);
}

/* Opportunities Container Card & Stacked Opportunities Layout */
.opportunities-container-card {
    margin-top: 12px;
}

.opp-list-stacked {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.opp-stacked-card {
    background-color: #09090b;
    border: 1px solid #1c1c1f;
    border-radius: var(--radius-md);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--transition-base);
}

.opp-stacked-card:hover {
    transform: translateX(4px);
    border-color: var(--color-green-border);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.05);
}

.opp-stacked-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius-md);
    background-color: #111827;
    color: var(--color-green);
    font-size: 16px;
    flex-shrink: 0;
}

.opp-stacked-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.opp-stacked-title {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.opp-stacked-desc {
    font-size: 11px;
    color: var(--color-text-muted);
    margin-top: 1px;
}

.opp-stacked-val {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-green);
    white-space: nowrap;
}

/* Utilities for Colors */
.text-green {
    color: var(--color-green) !important;
}

.text-white {
    color: var(--color-text-white) !important;
}

/* Maturity (IMO) Component Checklist */
.structure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 24px;
}

.structure-section h3 {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 6px;
}

.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Custom Checkbox Design */
.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
    font-size: 12.5px;
    font-weight: 500;
    color: #a1a1aa; /* Readable light grey text in dark mode */
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-indicator {
    position: relative;
    top: 2px;
    display: block;
    width: 16px;
    height: 16px;
    background-color: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    transition: var(--transition-base);
    flex-shrink: 0;
}

.custom-checkbox:hover input ~ .checkbox-indicator {
    border-color: var(--color-border-hover);
}

.custom-checkbox input:checked ~ .checkbox-indicator {
    background-color: #10b981; /* Accent green checked background */
    border-color: #10b981;
}

.checkbox-indicator::after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkbox-indicator::after {
    display: block;
}

/* Highlight checked labels */
.custom-checkbox input:checked ~ .checkbox-label {
    color: var(--color-text-main);
    font-weight: 600;
}

/* Disabled/Locked checklist elements (like if Trabalha Sozinha locks others) */
.custom-checkbox.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.custom-checkbox.disabled input ~ .checkbox-indicator {
    background-color: #e2e8f0;
}

/* IMO Indicator Result Card */
.imo-indicator-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #18181b; /* Dark background */
    border: 1px solid #27272a;
    border-radius: var(--radius-md);
    padding: 16px;
    margin-top: 16px;
}

.imo-main-score {
    display: flex;
    flex-direction: column;
}

.imo-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-text-muted);
}

.imo-score-val {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-text-main);
    margin-top: 2px;
}

.imo-class-badge {
    padding: 6px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
}

.badge-baixa {
    background-color: var(--color-baixa-light);
    color: var(--color-baixa);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.badge-media {
    background-color: var(--color-media-light);
    color: var(--color-media);
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-boa {
    background-color: var(--color-boa-light);
    color: var(--color-boa);
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.badge-alta {
    background-color: var(--color-alta-light);
    color: var(--color-alta);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

/* Action Bar Bottom Buttons */
.action-bar {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 12px;
    margin-top: 8px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 48px;
    padding: 0 24px;
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-base);
    border: none;
}

.btn:active {
    transform: scale(0.98);
}

.btn-primary {
    background-color: var(--color-green-light);
    color: var(--color-green);
    border: 1px solid var(--color-green-border);
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.1), 0 8px 16px rgba(16, 185, 129, 0.05);
}

.btn-primary:hover {
    background-color: var(--color-green-border);
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(16, 185, 129, 0.12), 0 12px 24px rgba(16, 185, 129, 0.08);
}

.btn-secondary {
    background-color: var(--color-secondary);
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background-color: var(--color-secondary-hover);
    border-color: var(--color-border-hover);
}

/* App Footer */
.app-footer {
    text-align: center;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid var(--color-border);
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */

/* Tablet (1024px and down) */
@media (max-width: 1024px) {
    .grid-layout {
        grid-template-columns: 1fr 1fr;
    }
    
    .results-column {
        grid-column: span 2;
    }
    
    .main-title {
        font-size: 24px;
    }
}

/* Small Screens / Mobile (768px and down) */
@media (max-width: 768px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
    
    .results-column {
        grid-column: span 1;
    }
    
    .structure-grid {
        grid-template-columns: 1fr;
    }
    
    .header-container {
        padding: 0 16px;
    }
    
    .app-container {
        padding: 0 16px;
    }
}

/* ==========================================================================
   PDF EXPORT REPORT STYLING (A4 portrait size template)
   ========================================================================== */
.pdf-report {
    background-color: #ffffff;
    color: #0f172a;
    padding: 30px 40px;
    font-family: var(--font-primary);
}

.pdf-header {
    border-bottom: 2px solid #0f172a;
    padding-bottom: 16px;
    margin-bottom: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.pdf-logo {
    display: flex;
    flex-direction: column;
}

.pdf-logo-main {
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.5px;
}

.pdf-logo-main span {
    background-color: #0f172a;
    color: #ffffff;
    padding: 2px 6px;
    border-radius: 4px;
    margin-right: 4px;
}

.pdf-logo-sub {
    font-size: 10px;
    color: #64748b;
    font-weight: 600;
    margin-top: 2px;
}

.pdf-title-block {
    text-align: right;
}

.pdf-title-block h1 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
}

.pdf-date {
    font-size: 11px;
    color: #64748b;
    font-weight: 500;
    margin-top: 4px;
}

.pdf-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.pdf-section-title {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 6px;
    margin-bottom: 14px;
    color: #0f172a;
}

.pdf-metric-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pdf-metric-card.highlight {
    background-color: #ecfdf5;
    border-color: #a7f3d0;
}

.pdf-metric-card.dark-highlight {
    background-color: #062f1e;
    border-color: #10b981;
    color: #ffffff;
}

.pdf-metric-card.dark-highlight .pdf-metric-val {
    color: #34d399;
}

.pdf-metric-label {
    font-size: 12px;
    font-weight: 700;
}

.pdf-metric-sublabel {
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
    display: block;
    margin-top: 2px;
}

.pdf-metric-card.dark-highlight .pdf-metric-sublabel {
    color: #cbd5e1;
}

.pdf-metric-val {
    font-size: 15px;
    font-weight: 800;
}

.pdf-metric-card.highlight .pdf-metric-val {
    color: #059669;
}

.pdf-growth-badge {
    text-align: center;
    background-color: #ecfdf5;
    border: 2px dashed #059669;
    border-radius: 8px;
    padding: 14px;
    margin-top: 14px;
}

.pdf-growth-badge-title {
    font-size: 10px;
    font-weight: 700;
    color: #047857;
    letter-spacing: 0.5px;
}

.pdf-growth-badge-val {
    font-size: 28px;
    font-weight: 800;
    color: #047857;
}

/* PDF Opportunities Layout */
.pdf-opp-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    padding: 8px 0;
}

.pdf-opp-item:last-child {
    border-bottom: none;
}

.pdf-opp-text {
    font-size: 11px;
    font-weight: 700;
}

.pdf-opp-subtext {
    font-size: 9px;
    color: #64748b;
    display: block;
}

.pdf-opp-val {
    font-size: 12px;
    font-weight: 700;
    color: #059669;
}

/* PDF Structure / IMO layout */
.pdf-structure-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.pdf-struct-col h4 {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #475569;
}

.pdf-struct-item {
    font-size: 10px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pdf-struct-item i {
    font-size: 10px;
}

.pdf-struct-item.checked {
    font-weight: 600;
    color: #0f172a;
}

.pdf-struct-item.unchecked {
    color: #cbd5e1;
    text-decoration: line-through;
}

.pdf-imo-footer-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 10px 16px;
}

.pdf-imo-text {
    font-size: 11px;
    font-weight: 700;
}

.pdf-imo-val {
    font-size: 14px;
    font-weight: 800;
}

.pdf-imo-class {
    padding: 3px 8px;
    border-radius: 99px;
    font-size: 9px;
    font-weight: 700;
}

.pdf-disclaimer {
    border-top: 1px solid #e2e8f0;
    margin-top: 24px;
    padding-top: 10px;
    text-align: center;
    font-size: 9px;
    color: #94a3b8;
    font-weight: 500;
}
