:root {
    --bg: #eef8f6;
    --paper: #ffffff;
    --ink: #072b2a;
    --muted: #5c706d;
    --soft: #e7faf5;
    --line: #c9e9e3;
    --gesca-primary: #0EA7A2;
    --gesca-dark: #005553;
    --gesca-mint: #B3FFD4;
    --olive: #0EA7A2;
    --olive-dark: #005553;
    --olive-deep: #003b3a;
    --accent: #0EA7A2;
    --amber: #d97706;
    --red: #b91c1c;
    --sky: #0284c7;
    --steel: #334155;
    --shadow: 0 18px 45px rgba(16, 32, 24, 0.13);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.5;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

.app-shell {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
}

.sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 24px;
    background: var(--gesca-dark);
    color: #f8fbf5;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.brand {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.brand-mark {
    width: 118px;
    height: 48px;
    display: grid;
    place-items: center;
    background: transparent;
    color: #ffffff;
    border-radius: 8px;
    font-weight: 900;
    letter-spacing: 0;
}

.brand-mark img {
    max-width: 118px;
    max-height: 44px;
}

.brand strong,
.brand small {
    display: block;
}

.brand small {
    color: var(--gesca-mint);
    font-size: 0.82rem;
}

.nav {
    display: grid;
    gap: 8px;
}

.nav a {
    padding: 12px 14px;
    border-radius: 8px;
    color: #d9e7da;
    font-weight: 700;
}

.nav a.active,
.nav a:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.sidebar-note {
    margin-top: auto;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: #d9e7da;
}

.sidebar-note strong,
.sidebar-note span {
    display: block;
}

.sidebar-note span {
    margin-top: 6px;
    font-size: 0.9rem;
}

.main-area {
    min-width: 0;
    padding: 28px;
}

.topbar,
.section-heading,
.panel-title {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}

.topbar {
    margin-bottom: 24px;
}

.topbar h1,
.section-heading h2,
.panel-title h2 {
    margin: 0;
    line-height: 1.08;
}

.topbar h1 {
    font-size: 2rem;
}

.eyebrow {
    margin: 0 0 8px;
    text-transform: uppercase;
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
    text-align: center;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--olive);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(14, 167, 162, 0.25);
}

.btn-danger {
    background: #b91c1c;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(185, 28, 28, 0.18);
}

.btn-secondary {
    background: #ffffff;
    color: var(--olive-dark);
    border-color: var(--line);
}

.btn-dark {
    background: var(--steel);
    color: #ffffff;
}

.btn-ghost {
    background: transparent;
    color: var(--steel);
    border-color: var(--line);
}

.flash {
    margin: 0 0 20px;
    padding: 14px 16px;
    border-radius: 8px;
    background: #e9f6ec;
    border: 1px solid #bfe3c6;
    color: var(--olive-deep);
    font-weight: 700;
}

.flash-error {
    background: #fff1f2;
    border-color: #fecdd3;
    color: #991b1b;
}

.hero-panel {
    min-height: 360px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: #101c15;
    margin-bottom: 24px;
}

.hero-panel img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-panel::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8, 17, 12, 0.84), rgba(8, 17, 12, 0.34) 62%, rgba(8, 17, 12, 0.12));
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 680px;
    padding: 42px;
    color: #ffffff;
}

.hero-copy h2 {
    margin: 0;
    font-size: 2.4rem;
    line-height: 1.05;
}

.hero-copy p:not(.eyebrow) {
    max-width: 560px;
    color: #e4ece2;
    font-size: 1.05rem;
}

.hero-actions,
.page-actions,
.factory-card-actions,
.row-actions,
.sticky-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 28px;
}

.metric-card,
.factory-card,
.form-panel,
.report-panel,
.empty-state,
.toolbar,
.score-summary,
.factory-hero {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(16, 32, 24, 0.07);
}

.metric-card {
    padding: 18px;
}

.metric-card span,
.metric-card small {
    color: var(--muted);
}

.metric-card strong {
    display: block;
    margin: 6px 0 2px;
    font-size: 2rem;
    line-height: 1;
}

.metric-card.accent {
    background: var(--olive-dark);
    color: #ffffff;
}

.metric-card.accent span,
.metric-card.accent small {
    color: #d8ead9;
}

.toolbar {
    padding: 16px;
    margin-bottom: 26px;
}

.search-form {
    display: grid;
    gap: 10px;
}

.search-form label,
.assessment-form label {
    display: grid;
    gap: 7px;
    color: var(--steel);
    font-size: 0.9rem;
    font-weight: 800;
}

.search-form div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

input,
textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid #cfd8ce;
    border-radius: 8px;
    background: #ffffff;
    color: var(--ink);
    padding: 11px 12px;
    outline: none;
}

textarea {
    resize: vertical;
}

input:focus,
textarea:focus {
    border-color: var(--olive);
    box-shadow: 0 0 0 3px rgba(73, 126, 82, 0.16);
}

.search-form input {
    max-width: 420px;
}

.section-heading {
    margin: 26px 0 14px;
}

.table-wrap {
    overflow-x: auto;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 820px;
}

.data-table th,
.data-table td {
    padding: 14px 16px;
    text-align: left;
    border-bottom: 1px solid #e7ede5;
    vertical-align: middle;
}

.data-table th {
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    background: #f8faf7;
}

.data-table tr:last-child td {
    border-bottom: 0;
}

.table-title {
    display: block;
    font-weight: 900;
}

.data-table small {
    display: block;
    color: var(--muted);
}

.actions-col {
    width: 150px;
}

.row-actions a,
.row-actions button {
    color: var(--olive-dark);
    font-weight: 900;
}

.row-actions button,
.inline-delete button:not(.btn) {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
    color: #b91c1c;
    font-weight: 900;
}

.inline-delete {
    display: inline-flex;
}

.pill {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    min-height: 28px;
    padding: 5px 10px;
    border-radius: 8px;
    background: #edf2ed;
    color: var(--steel);
    font-size: 0.82rem;
    font-weight: 900;
}

.pill-danger {
    background: #fee2e2;
    color: #991b1b;
}

.pill-warning {
    background: #ffedd5;
    color: #9a3412;
}

.pill-info {
    background: #e0f2fe;
    color: #075985;
}

.pill-success,
.pill-elite {
    background: #dcfce7;
    color: #14532d;
}

.factory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.factory-card {
    padding: 18px;
    display: grid;
    gap: 14px;
}

.factory-card h3,
.factory-hero h2 {
    margin: 0;
}

.factory-card p,
.factory-hero p {
    margin: 5px 0 0;
    color: var(--muted);
}

.factory-card-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--muted);
    font-size: 0.9rem;
}

.factory-card-score {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.factory-card-score strong {
    font-size: 2rem;
}

.install-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
    background: var(--bg);
}

.install-card {
    width: min(620px, 100%);
    padding: 34px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.install-card h1 {
    margin: 0 0 10px;
}

.form-panel,
.score-summary {
    padding: 22px;
    margin-bottom: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.wide {
    grid-column: span 2;
}

.score-summary {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: center;
    gap: 22px;
    background: #ffffff;
}

.score-summary h2 {
    margin: 0;
    font-size: 3rem;
    line-height: 1;
}

.score-summary h2 small {
    color: var(--muted);
    font-size: 1rem;
}

.score-scale {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
}

.score-scale span {
    min-height: 42px;
    display: grid;
    place-items: center;
    padding: 6px;
    color: #ffffff;
    font-size: 0.78rem;
    font-weight: 900;
    text-align: center;
}

.score-scale span:nth-child(1) {
    background: var(--red);
}

.score-scale span:nth-child(2) {
    background: var(--amber);
}

.score-scale span:nth-child(3) {
    background: var(--sky);
}

.score-scale span:nth-child(4) {
    background: var(--olive);
}

.score-scale span:nth-child(5) {
    background: var(--olive-deep);
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 20px;
}

.area-card {
    --score-color: var(--olive);
    padding: 20px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-top: 5px solid var(--score-color);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(16, 32, 24, 0.07);
    display: grid;
    gap: 14px;
}

.area-card-head {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.area-card h3 {
    margin: 0;
    font-size: 1.1rem;
}

.area-card output {
    width: 58px;
    height: 58px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    background: var(--score-color);
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 900;
    flex: 0 0 auto;
}

.area-description {
    margin: 0;
    color: var(--muted);
}

.check-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.check-list span {
    padding: 6px 9px;
    border-radius: 8px;
    background: var(--soft);
    color: var(--steel);
    font-size: 0.82rem;
    font-weight: 700;
}

.item-score-grid {
    display: grid;
    gap: 12px;
}

.item-score-row {
    --score-color: var(--olive);
    display: grid;
    gap: 9px;
    padding: 12px;
    border: 1px solid var(--line);
    border-left: 4px solid var(--score-color);
    border-radius: 8px;
    background: #fbfdf9;
}

.item-score-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    color: var(--steel);
    font-weight: 900;
}

.item-score-title output {
    width: 40px;
    height: 32px;
    flex: 0 0 auto;
    border-radius: 8px;
    background: var(--score-color);
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 0.9rem;
    font-weight: 900;
}

.item-note {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.9rem;
}

.range-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 84px;
    gap: 12px;
    align-items: center;
}

.range-row.item-range-row {
    grid-template-columns: minmax(0, 1fr) 76px;
}

input[type="range"] {
    padding: 0;
    accent-color: var(--score-color);
}

.band-help {
    display: grid;
    gap: 7px;
}

.band-help span {
    display: none;
    padding: 10px;
    border-radius: 8px;
    background: #f8faf7;
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.88rem;
}

.band-help span.active {
    display: block;
}

.photo-editor {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.photo-edit-item {
    display: grid;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
}

.photo-edit-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 8px;
}

.checkbox-row {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    gap: 8px !important;
}

.checkbox-row input {
    width: auto;
}

.sticky-actions {
    position: sticky;
    bottom: 0;
    z-index: 5;
    justify-content: flex-end;
    margin: 24px -28px -28px;
    padding: 14px 28px;
    background: rgba(243, 246, 240, 0.92);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--line);
}

.factory-hero {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.factory-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
    color: var(--steel);
}

.factory-contact span {
    padding: 7px 9px;
    border-radius: 8px;
    background: var(--soft);
    font-weight: 700;
}

.factory-hero-score {
    min-width: 190px;
    padding: 16px;
    border-radius: 8px;
    background: var(--olive-dark);
    color: #ffffff;
}

.factory-hero-score span,
.factory-hero-score small {
    display: block;
    color: #d8ead9;
}

.factory-hero-score strong {
    display: block;
    font-size: 3rem;
    line-height: 1;
    margin: 8px 0;
}

.page-actions {
    margin-bottom: 20px;
}

.chart {
    width: 100%;
    height: auto;
}

.empty-state {
    padding: 34px;
    text-align: center;
}

.empty-state h2 {
    margin-top: 0;
}

.report-body {
    background: #dfe6dc;
}

.report-toolbar {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 14px 22px;
    background: rgba(243, 246, 240, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.report-sheet {
    width: min(1120px, calc(100% - 32px));
    margin: 22px auto 50px;
    background: #ffffff;
    box-shadow: var(--shadow);
}

.report-cover {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background: #101c15;
}

.report-cover-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.report-cover::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(9, 18, 13, 0.84), rgba(9, 18, 13, 0.5) 58%, rgba(9, 18, 13, 0.16));
}

.report-cover-overlay {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 56px;
    color: #ffffff;
}

.report-owner-logo {
    width: 164px;
    height: auto;
    margin-bottom: 28px;
}

.report-cover h1 {
    margin: 0 0 14px;
    font-size: 3.1rem;
    line-height: 1.03;
}

.report-cover h2 {
    margin: 0;
    font-size: 1.8rem;
    color: #e4ece2;
}

.report-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 34px;
}

.report-meta-grid span {
    min-height: 78px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.report-meta-grid strong {
    display: block;
    color: #cbd8c7;
    font-size: 0.78rem;
    text-transform: uppercase;
}

.report-kpis {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 1px;
    background: var(--line);
}

.report-kpis article {
    padding: 24px;
    background: #ffffff;
}

.report-kpis span,
.report-kpis small {
    display: block;
    color: var(--muted);
}

.report-kpis strong {
    display: block;
    margin: 4px 0;
    font-size: 2rem;
    line-height: 1.05;
}

.report-section,
.report-grid {
    padding: 32px 42px;
}

.report-grid {
    display: grid;
    gap: 20px;
}

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

.report-panel {
    padding: 22px;
}

.report-section-title {
    margin-bottom: 14px;
}

.report-section-title h2 {
    margin: 0;
    font-size: 1.7rem;
    line-height: 1.1;
}

.report-section-title.compact h2 {
    font-size: 1.25rem;
}

.lead-text {
    font-size: 1.18rem;
    color: #26352a;
}

.report-list,
.priority-list {
    margin: 0;
    padding-left: 20px;
}

.report-list li,
.priority-list li {
    margin-bottom: 12px;
}

.priority-list li strong,
.priority-list li span,
.priority-list li em {
    display: block;
}

.priority-list li em {
    margin-top: 5px;
    color: var(--olive-dark);
    font-style: normal;
    font-weight: 700;
}

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

.area-report-item {
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 16px;
    display: grid;
    gap: 10px;
}

.area-report-item > div:first-child {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.area-report-item h3,
.area-report-item p {
    margin: 0;
}

.area-report-item > div:first-child span,
.area-report-item small {
    color: var(--muted);
}

.area-report-item > strong {
    font-size: 1.7rem;
    color: var(--olive-dark);
}

.item-report-list {
    display: grid;
    gap: 6px;
    padding-top: 8px;
    border-top: 1px solid var(--line);
}

.item-report-list div {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    gap: 8px;
    align-items: start;
    padding: 7px 0;
    border-bottom: 1px solid #edf2ed;
}

.item-report-list div:last-child {
    border-bottom: 0;
}

.item-report-list span {
    color: var(--steel);
    font-size: 0.9rem;
}

.item-report-list strong {
    min-height: 26px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--soft);
    color: var(--olive-dark);
    font-size: 0.86rem;
}

.item-report-list small {
    grid-column: 1 / -1;
}

.recommendation-band {
    background: #f1f7ee;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.photo-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.photo-gallery figure {
    margin: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.photo-gallery img,
.visual-placeholder img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.photo-gallery figcaption {
    padding: 10px 12px;
    color: var(--muted);
    font-size: 0.9rem;
}

.visual-placeholder {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    overflow: hidden;
}

.visual-placeholder p {
    margin: 0;
    padding: 18px 18px 18px 0;
}

.report-footer {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 42px;
    color: var(--muted);
    border-top: 1px solid var(--line);
}

@media (max-width: 1100px) {
    .app-shell {
        grid-template-columns: 1fr;
    }

    .sidebar {
        position: static;
        height: auto;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .sidebar-note {
        display: none;
    }

    .nav {
        grid-auto-flow: column;
        margin-left: auto;
    }

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

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

    .area-grid,
    .report-grid.two,
    .area-report-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .main-area {
        padding: 18px;
    }

    .topbar,
    .section-heading,
    .panel-title,
    .factory-hero,
    .report-footer {
        display: grid;
    }

    .topbar h1 {
        font-size: 1.55rem;
    }

    .hero-panel {
        min-height: 500px;
    }

    .hero-panel::after,
    .report-cover::after {
        background: rgba(8, 17, 12, 0.68);
    }

    .hero-copy {
        padding: 26px;
    }

    .hero-copy h2 {
        font-size: 1.95rem;
    }

    .metric-grid,
    .factory-grid,
    .form-grid,
    .photo-editor,
    .photo-gallery,
    .report-kpis,
    .report-meta-grid,
    .visual-placeholder {
        grid-template-columns: 1fr;
    }

    .wide {
        grid-column: auto;
    }

    .score-summary {
        grid-template-columns: 1fr;
    }

    .score-scale {
        grid-template-columns: 1fr;
    }

    .range-row {
        grid-template-columns: 1fr;
    }

    .sticky-actions {
        margin-left: -18px;
        margin-right: -18px;
        margin-bottom: -18px;
        padding: 12px 18px;
        justify-content: stretch;
    }

    .sticky-actions .btn,
    .hero-actions .btn,
    .page-actions .btn {
        width: 100%;
    }

    .sidebar {
        padding: 18px;
    }

    .nav {
        width: 100%;
        grid-auto-flow: row;
        margin-left: 0;
    }

    .report-toolbar {
        position: static;
        display: grid;
    }

    .report-sheet {
        width: 100%;
        margin: 0;
    }

    .report-cover {
        min-height: 560px;
    }

    .report-cover-overlay {
        padding: 28px;
    }

    .report-cover h1 {
        font-size: 2.1rem;
    }

    .report-section,
    .report-grid {
        padding: 24px 20px;
    }

    .visual-placeholder p {
        padding: 0 16px 16px;
    }
}

@media print {
    @page {
        size: A4;
        margin: 11mm;
    }

    * {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    body {
        background: #ffffff;
    }

    .no-print,
    .report-toolbar {
        display: none !important;
    }

    .report-sheet {
        width: 100%;
        margin: 0;
        box-shadow: none;
    }

    .report-cover {
        min-height: 245mm;
        page-break-after: always;
    }

    .report-section,
    .report-grid,
    .report-kpis {
        page-break-inside: avoid;
    }

    .report-panel,
    .area-report-item,
    .photo-gallery figure {
        box-shadow: none;
    }

    .btn {
        display: none;
    }
}
