*,
*::before,
*::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    font-family: "Inter", "Roboto", "Helvetica Neue", Arial, sans-serif;
    background: #edf2f8;
    color: #0f172a;
}

body {
    display: flex;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.12), rgba(45, 134, 89, 0.08));
}

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

.app-shell {
    width: min(1320px, 98vw);
    margin: 32px 0;
    background: #ffffff;
    border-radius: 32px;
    box-shadow: 0 28px 68px rgba(15, 23, 42, 0.15);
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 1fr;
    min-height: 80vh;
}

.side-nav {
    background: #0f172a;
    color: #e2e8f0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    padding: 36px 28px;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.brand-logo {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: rgba(15, 23, 42, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0066cc;
    font-size: 36px;
}

.brand-logo .mdi {
    font-size: 40px;
}


.brand-copy h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.brand-copy p {
    margin: 0;
    font-size: 14px;
    color: rgba(226, 232, 240, 0.8);
}

.brand-provider {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.8);
    font-weight: 600;
}

.nav-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-button {
    border: none;
    background: rgba(255, 255, 255, 0.06);
    padding: 12px 14px;
    font-size: 15px;
    font-weight: 600;
    color: #e2e8f0;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.nav-button .mdi {
    font-size: 20px;
}

.nav-button .nav-label {
    display: inline;
}

.nav-button:hover {
    background: rgba(255, 255, 255, 0.12);
}

.nav-button.active {
    background: linear-gradient(120deg, #0066cc, #2d8659);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 102, 204, 0.25);
}

.nav-button.pitch {
    border: 1px solid rgba(245, 158, 11, 0.65);
    color: #facc15;
    background: rgba(245, 158, 11, 0.12);
}

.nav-button.pitch.active {
    background: linear-gradient(120deg, #f59e0b, #2d8659);
    color: #ffffff;
    border-color: transparent;
}

.nav-toggle-button {
    display: none;
    border: none;
    background: transparent;
    color: #0f172a;
    padding: 8px;
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-toggle-button .mdi {
    font-size: 24px;
}

.side-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: rgba(226, 232, 240, 0.8);
}

.side-footer strong {
    color: #fff;
}

.contact-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(148, 163, 184, 0.8);
}

.main-panel {
    display: flex;
    flex-direction: column;
    background: #f8fafc;
}

.top-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 32px;
    background: #ffffff;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.toolbar-info span {
    font-size: 13px;
    color: #475569;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.toolbar-actions {
    display: flex;
    gap: 12px;
}

.app-main {
    padding: 40px 48px 56px;
    display: flex;
    flex-direction: column;
    gap: 56px;
}

.satellite-monitor .map-card {
    gap: 18px;
}
.satellite-monitor {
    display: none;
}

.satellite-monitor.active {
    display: block;
}

.satellite-monitor.active .map-card {
    animation: fadeIn 0.4s ease;
}

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

.map-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.map-card-header h2 {
    margin: 0;
    font-size: 24px;
    color: #0f172a;
}

.map-card-header p {
    margin: 4px 0 0;
    font-size: 15px;
    color: #475569;
}

.app-section {
    display: none;
    flex-direction: column;
    gap: 32px;
}

.app-section.active {
    display: flex;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.section-header h2 {
    margin: 0;
    font-size: 30px;
    color: #0f172a;
}

.section-header p {
    margin: 6px 0 0;
    color: #475569;
    font-size: 16px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 102, 204, 0.12);
    color: #1e40af;
    font-size: 13px;
    font-weight: 600;
}

.card {
    background: #ffffff;
    border-radius: 22px;
    padding: 24px 28px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card .table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.02);
    padding: 4px;
}

.card .table-wrapper table {
    width: 100%;
    min-width: 420px;
}

.card h3 {
    margin: 0;
    font-size: 20px;
    color: #0f172a;
}

.card.gradient {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.14), rgba(45, 134, 89, 0.12));
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
}

.grid {
    display: grid;
    gap: 24px;
}

.grid.metrics {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.metric-card {
    position: relative;
}

.metric-label {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.metric-value {
    font-size: 30px;
    color: #0f172a;
}

.metric-delta {
    font-size: 14px;
    color: #2d8659;
}

.economic-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.economic-highlight {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.16), rgba(45, 134, 89, 0.12));
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    position: relative;
}

.economic-highlight.premium {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(45, 134, 89, 0.14));
}

.economic-highlight .note {
    margin: 0 0 12px 0;
    color: rgba(15, 23, 42, 0.7);
}

.bullet.sub-list {
    margin-left: 18px;
    gap: 6px;
}

.economic-total {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 18px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.55);
    color: #0f172a;
    font-weight: 600;
    max-width: 280px;
}

.economic-total span {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.6);
}

.economic-total small {
    font-size: 12px;
    font-weight: 500;
    color: rgba(15, 23, 42, 0.6);
}

.economic-chart {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.chart-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.chart-row {
    display: grid;
    grid-template-columns: 160px 1fr auto;
    align-items: center;
    gap: 16px;
}

.chart-label {
    font-weight: 600;
    color: #0f172a;
}

.chart-track {
    position: relative;
    height: 14px;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.chart-fill {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0066cc, #2d8659);
    transform: scaleX(var(--value, 0));
    transform-origin: left center;
}

.chart-value {
    font-weight: 600;
    color: #0f172a;
    font-variant-numeric: tabular-nums;
}

.chart-annotation {
    margin: 0;
    font-size: 13px;
    color: #475569;
}

.economic-highlight.premium .economic-total {
    background: rgba(255, 255, 255, 0.65);
}

.economic-tagline {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 14px;
    background: rgba(245, 158, 11, 0.18);
    color: #92400e;
    font-weight: 600;
}

.economic-tagline .mdi {
    font-size: 20px;
}

.economic-comparison .comparison-grid {
    display: grid;
    gap: 20px;
}

.comparison-title {
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #475569;
    font-weight: 600;
}

.comparison-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-bar {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 12px 16px;
    font-weight: 600;
    color: #0f172a;
    background: rgba(15, 23, 42, 0.08);
}

.comparison-bar span {
    position: relative;
    z-index: 2;
}

.comparison-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    transform-origin: left center;
    transform: scaleX(var(--value, 0));
    opacity: 0.85;
    z-index: 1;
}

.comparison-bar.base::before {
    background: linear-gradient(135deg, #0066cc, #2d8659);
}

.comparison-bar.premium::before {
    background: linear-gradient(135deg, #f59e0b, #2d8659);
}

.bullet.compact li {
    line-height: 1.4;
    margin-bottom: 6px;
}

.bullet.compact li:last-child {
    margin-bottom: 0;
}

.economic-suppliers .table-wrapper {
    margin-top: 16px;
}

.supplier-visuals {
    display: grid;
    gap: 20px;
    margin-top: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.supplier-chart-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.supplier-chart-block header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
}

.supplier-chart-block h4 {
    margin: 0;
    font-size: 16px;
    color: #0f172a;
}

.supplier-chart-block .chart-unit {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 600;
}

.supplier-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    color: #1f2937;
}

.supplier-table th,
.supplier-table td {
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.supplier-table thead th {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    background: rgba(15, 23, 42, 0.04);
}

.supplier-table tbody tr:last-child td {
    border-bottom: none;
}

.supplier-table td strong {
    font-weight: 700;
}
.grid.highlight {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.flow {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flow li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 15px;
}

.flow li strong {
    color: #0066cc;
}

.flow.vertical {
    padding-left: 22px;
    position: relative;
}

.flow.vertical::before {
    content: "";
    position: absolute;
    left: 6px;
    top: 4px;
    bottom: 4px;
    width: 2px;
    background: linear-gradient(180deg, #0066cc, #2d8659);
    opacity: 0.35;
}

.basin-ranking {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.basin-ranking li {
    display: flex;
    gap: 16px;
    align-items: center;
}

.basin-ranking .position {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(0, 102, 204, 0.12);
    color: #0066cc;
    font-weight: 700;
}

.chip-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(15, 23, 42, 0.05);
    color: #1f2937;
}

.chip.critical { background: rgba(220, 38, 38, 0.12); color: #991b1b; }
.chip.high { background: rgba(245, 158, 11, 0.18); color: #92400e; }
.chip.medium { background: rgba(59, 130, 246, 0.12); color: #1d4ed8; }
.chip.info { background: rgba(37, 99, 235, 0.12); color: #1e40af; }

.alerts-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
}

.table-card {
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
    overflow: hidden;
}

table {
    width: 100%;
    border-collapse: collapse;
}

thead {
    background: rgba(15, 23, 42, 0.05);
}

th, td {
    text-align: left;
    padding: 14px 18px;
    font-size: 14px;
    color: #1f2937;
}

tbody tr:nth-child(odd) {
    background: rgba(248, 250, 252, 0.7);
}

.alerts-layout tbody tr {
    cursor: pointer;
    transition: background 0.15s ease;
}

.alerts-layout tbody tr:hover {
    background: rgba(59, 130, 246, 0.12);
}

.alerts-layout tbody tr.selected {
    background: rgba(59, 130, 246, 0.18);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.35);
}

.pill {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.pill.critical { background: rgba(220, 38, 38, 0.12); color: #b91c1c; }
.pill.high { background: rgba(245, 158, 11, 0.16); color: #92400e; }
.pill.medium { background: rgba(37, 99, 235, 0.12); color: #1d4ed8; }

.focus-card {
    background: linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(0, 102, 204, 0.12));
    border-radius: 22px;
    padding: 20px 22px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.15);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.map-view {
    width: 100%;
    min-height: 280px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.map-overview {
    min-height: 420px;
}

.map-dashboard #map-tier {
    min-height: 420px;
}

.focus-card #map-dossier {
    min-height: 260px;
}

.map-dashboard {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: flex-start;
}

.map-side {
    display: grid;
    gap: 18px;
}

.filter-bar {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.filter-bar label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 13px;
    color: #475569;
}

.filter-bar select {
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 8px 12px;
    font-size: 14px;
    color: #0f172a;
    background: #ffffff;
}

.filter-bar input[type="search"] {
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 8px 12px;
    font-size: 14px;
    color: #0f172a;
    background: #ffffff;
    min-width: 220px;
}

.legend {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 14px;
    color: #475569;
}

.legend-color {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 8px;
}

.legend-color.tier1 { background: #dc2626; }
.legend-color.tier2 { background: #f59e0b; }
.legend-color.tier3 { background: #fbbf24; }

.note {
    font-size: 13px;
    color: #64748b;
    margin-top: 6px;
}

.grid.operations {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.info-box {
    background: rgba(15, 23, 42, 0.05);
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: #1f2937;
}

.info-box strong {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0066cc;
}

.bullet {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    font-size: 15px;
    color: #334155;
}

.governance-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid.reports {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.kpi-columns {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.report-builder .checklist-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #334155;
}

.checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #0066cc;
}

.checkbox-actions {
    margin-top: 8px;
    display: flex;
    gap: 12px;
}

.imagery-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.imagery-form label {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: #334155;
}

.imagery-form select,
.imagery-form input[type="text"],
.imagery-form input[type="date"] {
    border-radius: 12px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    padding: 10px 12px;
    font-size: 14px;
    color: #0f172a;
    background: #ffffff;
}

.date-range {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
}

.date-range span {
    font-size: 14px;
    color: #64748b;
}

.matrix,
.crops {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.matrix th,
.matrix td,
.crops th,
.crops td {
    padding: 12px 14px;
    text-align: center;
    border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.matrix th:first-child,
.matrix td:first-child {
    text-align: left;
}

.pitch-layout .grid.pitch {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pitch-footer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 24px;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1), rgba(45, 134, 89, 0.1));
    border-radius: 26px;
    padding: 24px 28px;
}

.pitch-footer ol {
    margin: 8px 0 0;
    padding-left: 20px;
    color: #1f2937;
    font-size: 15px;
    display: grid;
    gap: 6px;
}

.action-button {
    border: none;
    border-radius: 16px;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    color: #ffffff;
    background: linear-gradient(120deg, #0066cc, #2d8659);
    box-shadow: 0 16px 32px rgba(0, 102, 204, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.action-button.secondary {
    background: rgba(15, 23, 42, 0.05);
    color: #0f172a;
    box-shadow: none;
}

.action-button.tertiary {
    background: rgba(148, 163, 184, 0.15);
    color: #e2e8f0;
    border: 1px solid rgba(226, 232, 240, 0.2);
    box-shadow: none;
}

.action-button i {
    font-size: 18px;
}

.action-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 20px 36px rgba(0, 102, 204, 0.28);
}

.map-view.leaflet-container {
    height: 100%;
}

.map-view .leaflet-control-attribution {
    background: rgba(15, 23, 42, 0.85);
    color: #f8fafc;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
}

.map-view .leaflet-popup-content-wrapper {
    border-radius: 10px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.2);
    font-size: 13px;
}

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

    .side-nav {
        padding: 28px 22px;
    }

    .alerts-layout,
    .map-dashboard {
        grid-template-columns: 1fr;
    }

    .focus-card,
    .map-side {
        order: -1;
    }
}

@media (max-width: 900px) {
    body {
        background: #edf2f8;
    }

    .app-shell {
        width: 100%;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        grid-template-columns: 72px 1fr;
        min-height: 100vh;
    }

    .side-nav {
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        width: 100%;
        min-height: 100vh;
        padding: 24px 12px;
        align-items: center;
    }

    .nav-menu {
        max-height: 360px;
        overflow-y: auto;
        width: 100%;
        align-items: center;
    }

    .brand {
        align-items: center;
    }

    .brand-logo {
        width: 56px;
        height: 56px;
    }

    .nav-button {
        justify-content: center;
        width: 100%;
        padding: 10px;
    }

    .nav-button .mdi {
        font-size: 24px;
    }

    .nav-toggle-button {
        display: inline-flex;
    }

    .app-main {
        padding: 28px 20px 40px;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .top-toolbar {
        padding: 20px;
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        width: 100%;
    }

    .toolbar-info {
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .app-shell:not(.nav-expanded) .nav-label,
    .app-shell:not(.nav-expanded) .brand-copy.nav-collapsible,
    .app-shell:not(.nav-expanded) .side-footer.nav-collapsible {
        display: none;
    }

    .economic-grid {
        grid-template-columns: 1fr;
    }

    .chart-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .chart-value {
        justify-self: start;
    }

    .supplier-visuals {
        grid-template-columns: 1fr;
    }

    .app-shell.nav-expanded {
        grid-template-columns: minmax(220px, 62%) 1fr;
    }

    .app-shell.nav-expanded .side-nav {
        align-items: flex-start;
        padding: 28px 22px;
    }

    .app-shell.nav-expanded .nav-menu {
        align-items: stretch;
    }

    .app-shell.nav-expanded .brand {
        align-items: flex-start;
    }

    .app-shell.nav-expanded .nav-button {
        justify-content: flex-start;
    }

    .app-shell.nav-expanded .nav-button .mdi {
        font-size: 20px;
    }

    .app-shell.nav-expanded .nav-label {
        display: inline;
    }

    .app-shell.nav-expanded .brand-copy.nav-collapsible {
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: flex-start;
        text-align: left;
    }

    .app-shell.nav-expanded .side-footer.nav-collapsible {
        display: flex;
    }

    .app-shell.nav-expanded .nav-toggle-button {
        background: #0f172a;
        color: #e2e8f0;
    }
}
.report-builder .note {
    margin-bottom: 4px;
}

.imagery-card .note {
    margin-bottom: 8px;
}
