* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #efefef;
    color: #0f172a;
}

.app-shell {
    display: grid;
    grid-template-columns: 280px 1fr;
    grid-template-rows: 88px 1fr;
    min-height: 100vh;
}

.topbar {
    grid-column: 1 / 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #005746;
    color: #ffffff;
    padding: 0 20px;
}

.brand-logo {
    height: 196px;
    width: auto;
}

.topbar-right {
    font-size: 20px;
    font-weight: 700;
}

.sidebar {
    background: #d7e8e8;
    padding: 12px 8px;
}

.menu,
.submenu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-link,
.group-title,
.submenu-link {
    display: block;
    text-decoration: none;
    color: #003b32;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 6px;
}

.menu-link.active,
.submenu-link.active {
    background: #005746;
    color: #ffffff;
}

.menu-group .submenu {
    padding-left: 12px;
}

.content {
    padding: 28px 26px;
}

.page-card {
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
    padding: 24px;
}

.page-title {
    margin: 0 0 18px 0;
    font-size: 32px;
    font-weight: 700;
    color: #003b32;
}

.flash-message {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 600;
}

.flash-message.success {
    background: #e8f7ee;
    color: #166534;
}

.flash-message.error {
    background: #fdeaea;
    color: #b91c1c;
}

.goal-section {
    margin-bottom: 30px;
}

.section-title {
    margin: 0 0 14px 0;
    font-size: 24px;
    font-weight: 700;
    color: #003b32;
}

.goal-definition-box {
    border: 1px solid #cfd8d3;
    background: #f4fbf7;
    color: #0b5d4b;
    padding: 18px;
    border-radius: 8px;
    line-height: 1.6;
    white-space: normal;
}

.matrix-table {
    border: 1px solid #1f2937;
    width: 100%;
}

.matrix-row {
    display: grid;
    grid-template-columns: 34% 66%;
    min-height: 140px;
}

.matrix-row + .matrix-row {
    border-top: 1px solid #1f2937;
}

.matrix-label {
    position: relative;
    background: #cde9c8;
    border-right: 1px solid #1f2937;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.matrix-label-inner {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 36px;
}

.matrix-label-text {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.45;
    color: #000000;
}

.matrix-input {
    background: #f3f3f3;
}

.goal-textarea {
    width: 100%;
    min-height: 140px;
    height: 100%;
    border: none;
    background: transparent;
    resize: vertical;
    padding: 18px;
    font-size: 16px;
    line-height: 1.5;
    outline: none;
}

.tooltip-trigger {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 24px;
    height: 24px;
    border: none;
    border-radius: 50%;
    background: #005746;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    cursor: pointer;
    padding: 0;
}

.tooltip-trigger:hover {
    background: #004337;
}

.goal-tooltip-box {
    position: absolute;
    top: 18px;
    left: calc(100% + 12px);
    width: 420px;
    max-width: 520px;
    background: #ffffff;
    color: #111827;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    padding: 14px 16px;
    text-align: left;
    font-size: 14px;
    line-height: 1.5;
    z-index: 50;
}

.goal-tooltip-box[hidden] {
    display: none !important;
}

.empty-section {
    min-height: 120px;
    border: 1px dashed #c0c9c5;
    border-radius: 8px;
    background: #fafafa;
    padding: 18px;
    color: #6b7280;
}

.form-actions {
    text-align: right;
}

.save-btn {
    border: none;
    background: #005746;
    color: #ffffff;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
}

.save-btn:hover {
    background: #004337;
}

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

    .matrix-label {
        border-right: none;
        border-bottom: 1px solid #1f2937;
    }

    .goal-tooltip-box {
        left: 20px;
        right: 20px;
        width: auto;
        max-width: none;
        top: calc(100% + 10px);
    }

    .app-shell {
        grid-template-columns: 1fr;
        grid-template-rows: 88px auto 1fr;
    }

    .topbar {
        grid-column: 1;
    }
}

.scope-note-box {
    font-size: 15px;
}

.scope-radio-row {
    min-height: 110px;
}

.scope-radio-cell {
    display: flex;
    align-items: center;
    padding: 18px;
    background: #f3f3f3;
}

.scope-radio-option {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: #111827;
}

.scope-radio-option input[type="radio"] {
    transform: scale(1.3);
}

.lca-grid-wrapper {
    overflow-x: auto;
}

.lca-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.lca-table th,
.lca-table td {
    border: 1px solid #1f2937;
    padding: 10px 12px;
    vertical-align: middle;
}

.lca-table thead th {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    background: #efefef;
}

.lca-col-without {
    background: #86efac !important;
}

.lca-col-with {
    background: #38bdf8 !important;
}

.lca-category-cell {
    background: #efefef;
    font-weight: 700;
    text-align: center;
    width: 120px;
}

.lca-table td:nth-child(2),
.lca-table td:nth-child(3) {
    background: #f5f5f5;
}

.lca-number-input {
    width: 100%;
    min-width: 140px;
    padding: 10px 12px;
    border: none;
    background: #ffffff;
    font-size: 15px;
    outline: none;
}

.lca-number-input:focus {
    outline: 2px solid #005746;
    outline-offset: -2px;
}

@media (max-width: 1100px) {
    .lca-table {
        min-width: 980px;
    }
}

.lca-empty-cell {
    text-align: center;
    padding: 18px;
    background: #f9fafb;
    color: #6b7280;
}

.lca-table-wide {
    min-width: 1400px;
}

.lca-col-norm-without {
    background: #86efac !important;
}

.lca-col-norm-with {
    background: #38bdf8 !important;
}

.criteria-instructions-box {
    font-size: 17px;
    line-height: 1.6;
}

.criteria-table-wrapper {
    overflow-x: auto;
}

.criteria-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.criteria-table th,
.criteria-table td {
    border: 1px solid #1f2937;
    padding: 10px 12px;
    vertical-align: middle;
}

.criteria-title-row th {
    background: #cfe3ee;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
}

.criteria-table thead tr:nth-child(2) th {
    background: #efefef;
    text-align: center;
    font-weight: 700;
}

.criteria-number-input {
    width: 100%;
    padding: 10px 12px;
    border: none;
    background: #ffffff;
    font-size: 15px;
    outline: none;
    text-align: right;
}

.criteria-number-input:focus {
    outline: 2px solid #005746;
    outline-offset: -2px;
}

.criteria-readonly-cell {
    text-align: right;
    background: #f8fafc;
    font-weight: 600;
}

.criteria-question-banner {
    background: #cfe3c4;
    border: 1px solid #1f2937;
    border-bottom: none;
    padding: 14px 16px;
    font-size: 17px;
    font-weight: 700;
}

.criteria-question-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.criteria-question-table td {
    border: 1px solid #1f2937;
    padding: 14px 16px;
    vertical-align: middle;
    font-size: 16px;
}

.criteria-question-row td {
    background: #cfe3ee;
}

.criteria-question-value-cell {
    text-align: right;
    width: 180px;
}

.criteria-question-input {
    width: 110px;
}

.dashboard-card {
    border: 1px solid #2f2f2f;
    background: #ffffff;
}

.dashboard-instructions-title {
    background: #cfe3c4;
    font-size: 26px;
    font-weight: 700;
    padding: 14px 18px;
}

.dashboard-instructions-body {
    padding: 20px 30px;
}

.dashboard-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.dashboard-step-label {
    font-weight: 700;
    font-size: 22px;
    width: 120px;
    flex-shrink: 0;
}

.dashboard-step-text {
    font-size: 22px;
    line-height: 1.5;
}

.dashboard-section-card {
    margin-top: 24px;
}

.capsule-management-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    padding: 20px;
}

.capsule-panel {
    background: #ffffff;
    border: 1px solid #cfd8d3;
    border-radius: 8px;
    padding: 16px;
    min-width: 0;
}

.capsule-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.capsule-panel-title {
    margin: 0 0 14px 0;
    font-size: 24px;
    font-weight: 700;
    color: #003b32;
}

.capsule-panel-header .capsule-panel-title {
    margin-bottom: 0;
}

.capsule-table-wrapper {
    overflow-x: auto;
}

.capsule-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.capsule-table th,
.capsule-table td {
    border: 1px solid #1f2937;
    padding: 10px 12px;
    vertical-align: middle;
    font-size: 15px;
}

.capsule-table thead th {
    background: #efefef;
    font-weight: 700;
    text-align: left;
}

.capsule-row {
    cursor: pointer;
}

.capsule-row:hover {
    background: #f3faf7;
}

.capsule-row.selected {
    background: #dcefe5;
}

.capsule-empty-cell {
    text-align: center;
    color: #6b7280;
    background: #fafafa;
    padding: 18px;
}

.capsule-upload-form {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.capsule-file-input {
    max-width: 230px;
}

.download-btn {
    display: inline-block;
    background: #005746;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 700;
}

.download-btn:hover {
    background: #004337;
}

@media (max-width: 1200px) {
    .capsule-management-grid {
        grid-template-columns: 1fr;
    }
}
.capsule-form-card {
    background: #f8fbf9;
    border: 1px solid #cfd8d3;
    border-radius: 8px;
    padding: 14px;
    margin-bottom: 16px;
}

.capsule-form-grid {
    display: grid;
    grid-template-columns: 1fr 180px;
    gap: 14px;
}

.capsule-form-span {
    grid-column: 1 / -1;
}

.capsule-label {
    display: block;
    margin-bottom: 6px;
    font-weight: 700;
    color: #003b32;
}

.capsule-text-input,
.capsule-select-input,
.capsule-textarea {
    width: 100%;
    border: 1px solid #c7d1cb;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 15px;
    background: #ffffff;
}

.capsule-textarea {
    resize: vertical;
}

.capsule-form-actions {
    margin-top: 12px;
    text-align: right;
}

.capsule-form-actions-between {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.danger-btn {
    border: none;
    background: #b91c1c;
    color: #ffffff;
    padding: 12px 22px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    margin-bottom: 16px;
}

.danger-btn:hover {
    background: #991b1b;
}

.capsule-table-top-gap {
    margin-top: 8px;
}

@media (max-width: 1200px) {
    .capsule-form-grid {
        grid-template-columns: 1fr;
    }
}

.criteria-auto-banner,
.criteria-consistency-banner {
    background: #ecd9cf;
    padding: 10px 14px;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.criteria-consistency-banner {
    background: #dcefd4;
}

.criteria-auto-text {
    color: #ff0000;
    font-weight: 700;
}

.wide-table {
    width: 72%;
    min-width: 760px;
    margin-left: 15%;
}

.num-cell {
    text-align: right;
}

.green-text {
    color: #4fa62a;
}

.consistency-table {
    width: 42%;
    min-width: 420px;
    margin-left: 15%;
    margin-bottom: 24px;
}

.consistency-metrics-wrapper {
    width: 42%;
    min-width: 420px;
    margin-left: 15%;
}

.consistency-metrics td:first-child {
    width: 45%;
}

.criteria-result-box {
    width: 42%;
    min-width: 420px;
    margin-left: 15%;
    margin-top: 24px;
    border: 1px solid #1f2937;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.criteria-result-box > div {
    padding: 10px 12px;
    border-right: 1px solid #1f2937;
}

.criteria-result-box > div:last-child {
    border-right: none;
    text-align: center;
}

.criteria-warning-text {
    width: 42%;
    min-width: 420px;
    margin-left: 15%;
    margin-top: 10px;
    color: #ff0000;
    font-size: 14px;
}
.input-table {
    width: 60%;
    min-width: 520px;
    margin-bottom: 16px;
}

.input-table td:last-child,
.input-table th:last-child {
    width: 140px;
}

.input-table .criteria-number-input {
    width: 100px;
}
.env-wide-table {
    min-width: 2200px;
}

.summary-table {
    width: 400px;
    margin-top: 20px;
}

.final-recommendation {
    margin-top: 20px;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    text-align: center;
}

.rec-positive {
    background-color: #d4edda;
    color: #155724;
}

.rec-negative {
    background-color: #f8d7da;
    color: #721c24;
}

.rec-neutral {
    background-color: #fff3cd;
    color: #856404;
}

.positive {
    color: #28a745;
    font-weight: bold;
}

.negative {
    color: #dc3545;
    font-weight: bold;
}
.summary-table {
    width: 400px;
    margin-top: 20px;
}

.final-recommendation {
    margin-top: 20px;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    text-align: center;
}

.rec-positive {
    background-color: #d4edda;
    color: #155724;
}

.rec-negative {
    background-color: #f8d7da;
    color: #721c24;
}

.rec-neutral {
    background-color: #fff3cd;
    color: #856404;
}

.survey-form {
    width: 100%;
}

.survey-question-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
    line-height: 1.4;
}

.survey-question-note {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 22px;
    color: #111827;
}

.survey-grid-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
}

.survey-grid-table td {
    border: 1px solid #1f2937;
    padding: 10px 14px;
    font-size: 18px;
}

.survey-option-label {
    width: 50%;
}

.survey-option-input {
    width: 50%;
    text-align: center;
}

.survey-option-input input[type="checkbox"] {
    transform: scale(1.3);
}

.survey-group-title {
    margin-top: 18px;
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.survey-subitems {
    margin-left: 28px;
    margin-bottom: 12px;
}

.survey-checkline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #111827;
}

.survey-checkline-top {
    margin-left: 0;
    margin-bottom: 16px;
}

.survey-checkline input[type="checkbox"] {
    transform: scale(1.2);
}

/* Bold question */
.survey-question-title-bold {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 8px;
    line-height: 1.4;
}

/* Italic instruction */
.survey-question-note-italic {
    font-size: 18px;
    font-style: italic;
    color: #111827;
    margin-bottom: 6px;
}

/* Spacer (empty lines) */
.survey-spacer {
    height: 16px;
}

/* Inline options (same row like your screenshot) */
.survey-subitems-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-left: 10px;
    margin-bottom: 10px;
}

.survey-inline-option {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
}

.survey-inline-option input {
    transform: scale(1.2);
}

.survey-last-saved {
    margin-bottom: 16px;
    color: #475569;
    font-size: 14px;
    font-weight: 600;
}

.mi-section-header {
    padding: 10px 14px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.mi-table {
    table-layout: fixed;
}

.mi-table td {
    vertical-align: middle;
}

.mi-code {
    width: 80px;
    font-weight: 600;
    text-align: center;
}

.mi-label {
    width: calc(100% - 360px);
    font-size: 1.05rem;
}

.mi-values {
    width: 280px;
    text-align: center;
}

.mi-radio-group {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

.mi-radio-option {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

.mi-radio-option input[type="radio"] {
    margin: 0;
}

.mi-table tr:nth-child(even) td {
    background-color: #f7f7f7;
}
.mi-table {
    table-layout: fixed;
    width: 100%;
}

.mi-code {
    width: 80px;
    text-align: center;
    font-weight: 600;
}

.mi-label {
    width: calc(100% - 360px); /* dynamic but leaves space for radios */
}

.mi-values {
    width: 300px;              /* fixed width for all radio groups */
    text-align: right;         /* push radios to the right */
    padding-right: 20px;
}

.mi-radio-group {
    display: flex;
    justify-content: flex-end; /* aligns radios to the right */
    gap: 16px;
}

.mi-radio-option {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin: 0;
    cursor: pointer;
    font-weight: 500;
}

.mi-radio-option input[type="radio"] {
    margin: 0;
}

.mi-table td {
    border: 1px solid #ccc;
}

.mi-table tr:nth-child(even) {
    background-color: #f8f8f8;
}
.material-impact-banner {
    background: #97cb4c;
    color: #111827;
    font-size: 22px;
    font-weight: 400;
    padding: 10px 14px;
    margin-bottom: 18px;
}

.material-impact-intro {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.material-impact-table-wrapper {
    overflow-x: auto;
}

.material-impact-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.material-impact-table th,
.material-impact-table td {
    border: 1px solid #1f2937;
    vertical-align: top;
}

.material-impact-table th {
    background: #08b84f;
    color: #111827;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    padding: 10px;
}

.stakeholder-cell {
    width: 26%;
    font-size: 18px;
    padding: 10px;
}

.impacts-cell {
    width: 32%;
    padding: 0;
}

.explanation-cell {
    width: 42%;
    padding: 0;
}

.impact-line {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: stretch;
    border-bottom: 1px solid #1f2937;
}

.impact-line:last-child {
    border-bottom: none;
}

.impact-index {
    padding: 10px;
    font-size: 18px;
}

.impact-input,
.explanation-input {
    width: 100%;
    border: none;
    outline: none;
    resize: vertical;
    padding: 10px;
    font-size: 17px;
    background: transparent;
    box-sizing: border-box;
}

.row-even td {
    background: #dfead7;
}

.row-odd td {
    background: #ffffff;
}

.materiality-table-wrapper {
    overflow-x: auto;
    margin-top: 12px;
}

.materiality-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 14px;
}

.materiality-table th,
.materiality-table td {
    border: 1px solid #1f2937;
    padding: 6px 6px;
    vertical-align: middle;
}

.materiality-table th {
    text-align: center;
    font-weight: 700;
}

.col-esrs {
    width: 70px;
}

.col-category {
    width: 180px;
}

.col-subcategory {
    width: 300px;
}

.col-small {
    width: 90px;
}

.esrs-cell {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
    font-weight: 700;
    background: #f4f4f4;
}

.category-cell {
    font-weight: 700;
    text-align: center;
}

.subcategory-cell {
    text-align: left;
}

.separator-col {
    width: 14px;
    background: #000000;
    border: none !important;
    padding: 0 !important;
}

.materiality-input {
    width: 100%;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: transparent;
    text-align: center;
    font-size: 14px;
    padding: 4px;
}

.readonly-score {
    font-weight: 700;
    background: #f8fafc;
}

.group-e1 td,
.group-e1 .esrs-cell,
.group-e1 .category-cell {
    background: #b8d89a;
}

.group-e2 td,
.group-e2 .esrs-cell,
.group-e2 .category-cell {
    background: #c7df9a;
}

.group-e3 td,
.group-e3 .esrs-cell,
.group-e3 .category-cell {
    background: #9fb5e0;
}

.group-e4 td,
.group-e4 .esrs-cell,
.group-e4 .category-cell {
    background: #b7c7e6;
}

.group-e5 td,
.group-e5 .esrs-cell,
.group-e5 .category-cell {
    background: #dce3f0;
}

.group-s1 td,
.group-s1 .esrs-cell,
.group-s1 .category-cell {
    background: #f2e8be;
}

.group-s2 td,
.group-s2 .esrs-cell,
.group-s2 .category-cell {
    background: #f5e08e;
}

.group-s3 td,
.group-s3 .esrs-cell,
.group-s3 .category-cell {
    background: #f2d35f;
}

.group-s4 td,
.group-s4 .esrs-cell,
.group-s4 .category-cell {
    background: #d9d9d9;
}

.group-g1 td,
.group-g1 .esrs-cell,
.group-g1 .category-cell {
    background: #d9d9d9;
}

.group-g2 td,
.group-g2 .esrs-cell,
.group-g2 .category-cell {
    background: #e6e6e6;
}

/* keep separator black */
.group-e1 .separator-col,
.group-e2 .separator-col,
.group-e3 .separator-col,
.group-e4 .separator-col,
.group-e5 .separator-col,
.group-s1 .separator-col,
.group-s2 .separator-col,
.group-s3 .separator-col,
.group-s4 .separator-col,
.group-g1 .separator-col,
.group-g2 .separator-col {
    background: #000000;
}

.category-cell {
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
}

.esrs-cell {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-align: center;
    font-weight: 700;
    vertical-align: middle;
}

.dma-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-top: 12px;
}

.dma-table-panel {
    flex: 0 0 230px;
}

.dma-chart-panel {
    flex: 1 1 auto;
    overflow-x: auto;
}

.dma-side-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 18px;
}

.dma-side-table td {
    border: 1px solid #1f2937;
    padding: 6px 10px;
    font-weight: 700;
}

.dma-code-cell {
    color: #d32f2f;
    width: 90px;
}

.dma-env-cell,
.dma-fin-cell {
    text-align: center;
    width: 60px;
    background: #fff176;
}

#dmaChart {
    border: 1px solid #d0d0d0;
    background: #ffffff;
    max-width: 100%;
    height: auto;
}

.ma-help-wrapper {
    width: 100%;
}

.ma-help-grid {
    display: grid;
    grid-template-columns: 1fr 36px 1fr;
    gap: 0;
    align-items: start;
}

.ma-help-divider {
    background: #000000;
    min-height: 100%;
}

.ma-help-column {
    width: 100%;
}

.ma-help-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin-bottom: 18px;
    font-size: 15px;
}

.ma-help-table th,
.ma-help-table td {
    border: 1px solid #1f2937;
    padding: 8px 10px;
    vertical-align: top;
}

.ma-help-table th {
    font-weight: 700;
    text-align: center;
}

.score-col {
    width: 70px;
    text-align: center;
    font-weight: 700;
}

.ma-help-table-a thead tr:nth-child(1) th,
.ma-help-table-fin1 thead tr:nth-child(1) th {
    background: #b8c3d6;
    font-size: 18px;
}

.ma-help-table-a thead tr:nth-child(2) th,
.ma-help-table-a tbody td {
    background: #efc4a3;
}

.ma-help-table-b thead tr:nth-child(1) th,
.ma-help-table-b tbody td {
    background: #f2de8f;
}

.ma-help-table-c thead tr:nth-child(1) th,
.ma-help-table-c tbody td {
    background: #c7ddb5;
}

.ma-help-table-fin1 thead tr:nth-child(2) th,
.ma-help-table-fin1 tbody td {
    background: #d9d9d9;
}

.ma-help-table-fin2 thead tr:nth-child(1) th,
.ma-help-table-fin2 tbody td {
    background: #b8c7db;
}

.ma-help-table-fin3 thead tr:nth-child(1) th,
.ma-help-table-fin3 tbody td {
    background: #d9d9d9;
}

.ma-help-table-ts thead th {
    background: #3f6b22;
    color: #ffffff;
}

.ma-help-table-ts tbody tr:nth-child(1) td {
    background: #5f8f34;
    color: #000000;
}

.ma-help-table-ts tbody tr:nth-child(2) td {
    background: #8fb36a;
}

.ma-help-table-ts tbody tr:nth-child(3) td {
    background: #c2d8ad;
}

.ma-help-table-ts tbody tr:nth-child(4) td {
    background: #dbe7cf;
}

.page-title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.page-title {
    margin: 0;
}

.help-btn {
    background-color: #1f6feb;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.help-btn:hover {
    background-color: #174ea6;
}
.menu-toggle,
.submenu-toggle {
    width: 100%;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font: inherit;
    color: inherit;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
}

.menu-toggle:hover,
.submenu-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
}

.menu-arrow {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.menu-toggle.expanded .menu-arrow,
.submenu-toggle.expanded .menu-arrow {
    transform: rotate(90deg);
}

.submenu {
    display: none;
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.submenu-nested {
    padding-left: 14px;
}

.submenu-group {
    margin: 0;
}

.group-title {
    font-weight: 600;
}

.lcc-sheet-wrapper {
    max-height: 80vh;   /* or any height */
    overflow-y: auto;
    overflow-x: auto;
}

.lcc-sheet-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 14px;
}

.lcc-sheet-table td,
.lcc-sheet-table th {
    border: 1px solid #1f2937;
    padding: 6px 8px;
    vertical-align: top;
    white-space: pre-wrap;
}

.lcc-cell-input {
    width: 100%;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    padding: 4px;
}

.lcc-static-document {
    max-width: 980px;
    margin: 0 auto;
    background: #ffffff;
    padding: 36px 48px;
    border: 1px solid #d1d5db;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    font-family: "Times New Roman", Georgia, serif;
    font-size: 18px;
    line-height: 1.7;
    color: #111827;
}

.lcc-doc-title {
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lcc-doc-subtitle {
    text-align: center;
    font-size: 17px;
    margin-bottom: 28px;
}

.lcc-static-document h2 {
    text-align: center;
    font-size: 26px;
    margin-top: 18px;
    margin-bottom: 18px;
    font-weight: 700;
}

.lcc-static-document h3 {
    font-size: 21px;
    margin-top: 26px;
    margin-bottom: 12px;
    font-weight: 700;
}

.lcc-static-document p {
    margin-bottom: 14px;
    text-align: justify;
}

.lcc-static-document ul {
    margin: 8px 0 16px 28px;
}

.lcc-static-document li {
    margin-bottom: 6px;
}

.lcc-summary-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 17px;
}

.lcc-summary-table th,
.lcc-summary-table td {
    border: 1px solid #1f2937;
    padding: 10px 12px;
    vertical-align: middle;
}

.lcc-summary-table th {
    background: #e5e7eb;
    text-align: center;
    font-weight: 700;
}

.lcc-summary-col-item {
    width: 56%;
}

.lcc-summary-col-value {
    width: 22%;
}

.lcc-summary-section-row td {
    background: #dbeafe;
    font-weight: 700;
    font-size: 18px;
}

.lcc-summary-input {
    width: 100%;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: transparent;
    font-size: 16px;
    padding: 4px 2px;
    text-align: right;
}

.lcc-summary-readonly {
    background: #f3f4f6;
    font-weight: 700;
}

.lcc-summary-page {
    max-width: 1600px;
    margin: 0 auto;
}

.lcc-subtitle {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

.lcc-sheet-wrapper {
    overflow-x: auto;
}

.lcc-summary-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 13px;
}

.lcc-summary-table th,
.lcc-summary-table td {
    border: 1px solid #333;
    padding: 6px 8px;
    vertical-align: top;
}

.lcc-summary-table th:nth-child(1),
.lcc-summary-table td:nth-child(1) {
    width: 3%;
}

.lcc-summary-table th:nth-child(2),
.lcc-summary-table td:nth-child(2) {
    width: 10%;
}

.lcc-summary-table th:nth-child(3),
.lcc-summary-table td:nth-child(3) {
    width: 52%;
}

.lcc-summary-table th:nth-child(4),
.lcc-summary-table td:nth-child(4),
.lcc-summary-table th:nth-child(5),
.lcc-summary-table td:nth-child(5) {
    width: 17.5%;
}

.main-header th {
    background: #d9e2f3;
    text-align: center;
    font-weight: 700;
}

.section-row td {
    background:#b8d89a;
    font-weight: 900;
}

.lcc-summary-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 14px;
}

.lcc-summary-table th,
.lcc-summary-table td {
    border: 1px solid #444;
    padding: 8px 10px;
    vertical-align: middle;
}

.lcc-summary-table th:nth-child(1),
.lcc-summary-table td:nth-child(1) {
    width: 55%;
}

.lcc-summary-table th:nth-child(2),
.lcc-summary-table td:nth-child(2) {
    width: 22.5%;
}

.lcc-summary-table th:nth-child(3),
.lcc-summary-table td:nth-child(3) {
    width: 22.5%;
}

.main-header th {
    background: #d9e2f3;
    text-align: center;
    font-weight: 900;
}

.section-row td {
    background: #b8d89a;
    font-weight: 800;
}

.group-row td {
    background: #dbeafe;
    font-weight: 900;
}

.total-row td {
    background: #d9e2f3;
    font-weight: 900;
}

.spacer-row td {
    border: none;
    background: #fff;
    height: 10px;
    padding: 0;
}

.label-cell {
    white-space: normal;
    word-break: break-word;
}

.lcc-cell-input {
    width: 100%;
    box-sizing: border-box;
    border: none;
    background: transparent;
    padding: 4px;
}

.lcc-cell-input[readonly] {
    background: #f5f5f5;
    font-weight: 600;
}

table.lcc-summary-table tr.section-row td {
    background-color:#b8d89a !important;
    font-weight: 800 !important;
}

table.lcc-summary-table tr.group-row td {
    background-color: #dbeafe !important;
    font-weight: 900 !important;
}

table.lcc-summary-table tr.total-row td {
    background-color:#d9e2f3 !important;
    font-weight: 900 !important;
}

table.lcc-summary-table tr.main-header th {
    background-color: #d9e2f3 !important;
    text-align: center;
    font-weight: 900 !important;
}

.lcc-summary-page {
    max-width: 1600px;
    margin: 0 auto;
}

.lcc-subtitle {
    text-align: center;
    font-weight: 600;
    margin-bottom: 20px;
}

.lcc-summary-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 14px;
}

.lcc-summary-table th,
.lcc-summary-table td {
    border: 1px solid #1f2937;
    padding: 8px 10px;
    vertical-align: middle;
}

.lcc-summary-table th:nth-child(1),
.lcc-summary-table td:nth-child(1) {
    width: 55%;
}

.lcc-summary-table th:nth-child(2),
.lcc-summary-table td:nth-child(2),
.lcc-summary-table th:nth-child(3),
.lcc-summary-table td:nth-child(3) {
    width: 22.5%;
}

.lcc-summary-table tr.main-header th {
    background: #d9e2f3 !important;
    text-align: center;
    font-weight: 900 !important;
}

.lcc-summary-table tr.section-row td {
    background: #b8d89a !important;
    font-weight: 900 !important;
    font-size: 18px;
}

.lcc-summary-table tr.group-row td {
    background: #bbf2cc !important;
    font-weight: 900 !important;
    padding-left: 18px;
}

.lcc-summary-table tr.total-row td {
    background: #efefef !important;
    font-weight: 900 !important;
}

.lcc-summary-table tr.spacer-row td {
    border: none !important;
    background: #ffffff !important;
    height: 10px;
    padding: 0;
}

.lcc-summary-table .label-cell {
    white-space: normal;
    word-break: break-word;
}

.lcc-summary-table .lcc-cell-input {
    width: 100%;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    padding: 4px;
}

.lcc-summary-table .lcc-cell-input[readonly] {
    background: #f5f5f5;
    font-weight: 700;
}

.capsule-textarea {
    min-height: 70px;   /* ~3 lines */
    height: 70px;
    resize: vertical;   /* still allow user to expand */
}

.criteria-table input[type="number"] {
    text-align: right;
}

.survey-question-title {
    font-size: 16px;          /* smaller text */
    font-weight: 600;         /* slightly bold */
    color: #1f3a5f;           /* dark blue */
    margin-bottom: 6px;
}

.survey-question-note {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 8px;
    font-style: italic;
}

.maq-table td,
.maq-table th {
    vertical-align: top;
    line-height: 1.5;
}

.maq-steps {
    margin: 12px 0 18px 22px;
    line-height: 1.7;
}

.maq-steps li {
    margin-bottom: 8px;
}

/* ===== MAQ TABLE (PDF STYLE) ===== */

.maq-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

/* HEADER (dark teal) */
.maq-table thead th {
    background: #0f5c6e;   /* dark teal */
    color: #ffffff;
    font-weight: 700;
    padding: 8px;
    border: 1px solid #0b4451;
    text-align: left;
}

/* ROWS */
.maq-table tbody td {
    padding: 8px;
    border: 1px solid #b7d1d8;
    vertical-align: top;
}

/* ALTERNATING COLORS (like PDF) */
.maq-table tbody tr:nth-child(odd) {
    background: #d9eef2;   /* light teal */
}

.maq-table tbody tr:nth-child(even) {
    background: #c6e4ea;   /* slightly darker teal */
}

/* STRONG LEFT COLUMN (Score column) */
.maq-table td:first-child {
    font-weight: 700;
    width: 140px;
}

/* LEVEL COLUMN */
.maq-table td:nth-child(2) {
    font-weight: 600;
    color: #083a44;
}

/* ===== SECOND TABLE (MATURITY LEVELS) ===== */

/* Color coding by level */
.maq-table .level-1 { background: #f4cccc; }  /* red-ish */
.maq-table .level-2 { background: #ffaaaa; }  /* yellow */
.maq-table .level-3 { background: #ff8888; }  /* light green */
.maq-table .level-4 { background: #ff5555; }  /* blue */
.maq-table .level-5 { background: #771111; }  /* strong green */

/* ===== TYPOGRAPHY ===== */

.maq-table td,
.maq-table th {
    line-height: 1.5;
}

/* ===== LIST ===== */

.maq-steps {
    margin: 12px 0 18px 22px;
    line-height: 1.7;
}

.maq-capsule-textarea {
    min-height: 50px;   /* ~2 lines */
    resize: vertical;
    width: 95%;
}

/* MAQ Governance table column widths */
.maq-governance-table td.question-col {
    width: 45%;   /* ~75% of previous (which was ~60%) */
}

.maq-governance-table td.score-col {
    width: 120px;
}

.maq-governance-table td.reference-col {
      min-height: 50px;   /* ~2 lines */
    resize: vertical;
    width: 95%;

}

/* Error highlight */
.input-error {
    border: 2px solid #d9534f !important;
    background-color: #fff0f0;
}

/* Error message */
.field-error {
    color: #d9534f;
    font-size: 12px;
    margin-top: 4px;
}

.maq-total-row {
    background: #eef6f8;
    font-weight: 700;
}

.maq-section-average {
    font-size: 16px;
    font-weight: 700;
    color: #0f5c6e;
}

.maq-interpretation-table thead th {
    background: #0f5c6e;
    color: #ffffff;
    font-weight: 700;
    border: 1px solid #0b4451;
}

.maq-interpretation-table tbody td {
    border: 1px solid #b7d1d8;
    vertical-align: top;
    line-height: 1.5;
}

.maq-interpretation-table .level-1 td {
    background: #f4cccc;
}

.maq-interpretation-table .level-2 td {
    background: #fff2cc;
}

.maq-interpretation-table .level-3 td {
    background: #d9ead3;
}

.maq-interpretation-table .level-4 td {
    background: #cfe2f3;
}

.maq-interpretation-table .level-5 td {
    background: #b6d7a8;
}

.maq-interpretation-block {
    margin-top: 20px;
    padding: 16px 18px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
}

.maq-interpretation-block h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.maq-interpretation-block ul {
    margin-top: 8px;
    margin-bottom: 0;
    padding-left: 22px;
}

/* Header */
.maq-interpretation-table thead th {
    background: #e6e6e6;
    color: #000;
    font-weight: 700;
    border: 1px solid #000;
}

/* General cell styling */
.maq-interpretation-table td {
    border: 1px solid #000;
    padding: 8px 10px;
    vertical-align: top;
}

/* LEVEL COLORS — matching your figure */

/* Level 1 (<2.0) – very light beige */
.maq-interpretation-table .level-1 td {
    background: #e6d5c3;
    color: #000;
}

/* Level 2 (2.0–2.9) – light orange */
.maq-interpretation-table .level-2 td {
    background: #edc6a3;
    color: #000;
}

/* Level 3 (3.0–3.9) – stronger orange */
.maq-interpretation-table .level-3 td {
    background: #f4a460;
    color: #000;
}

/* Level 4 (4.0–4.5) – strong orange */
.maq-interpretation-table .level-4 td {
    background: #e46c0a;
    color: #ffffff;
}

/* Level 5 (>4.5) – dark brown */
.maq-interpretation-table .level-5 td {
    background: #974806;
    color: #ffffff;
}

.maq-interpretation-table td strong {
    font-weight: 700;
}

.maq-interpretation-table tbody tr td:first-child {
    white-space: nowrap;
}

.maq-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.maq-title {
    color: #1b5e20;
    font-weight: 800;
    margin-bottom: 25px;
}

.maq-section {
    background: #f7f9fb;
    border-left: 6px solid #2e7d32;
    padding: 20px;
    margin-bottom: 25px;
    border-radius: 6px;
}

.maq-section-title {
    color: #0d47a1;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.maq-list {
    margin-left: 20px;
    margin-bottom: 15px;
}

.maq-warning {
    color: #c62828;
    font-weight: 600;
}

.maq-note {
    font-style: italic;
    color: #555;
}

.self-assessment-table .sa-question-cell {
    font-weight: 600;
    vertical-align: top;
}

.self-assessment-table textarea {
    min-height: 72px;
}

.sa-select {
    width: 100%;
    padding: 8px;
}

.sa-prefilled {
    font-style: italic;
    color: #555;
}

.sa-file-name {
    margin-top: 6px;
    font-size: 12px;
    color: #0f5c6e;
    word-break: break-word;
}

.lcc-static-document h2 {
    color: #1b5e20;
    margin-bottom: 12px;
}

.lcc-static-document h3 {
    color: #0d47a1;
    margin-top: 8px;
    margin-bottom: 12px;
}

.lcc-static-document p {
    line-height: 1.7;
    margin-bottom: 12px;
}

.stakeholders-no-cell {
    font-weight: 700;
    text-align: center;
    vertical-align: top;
}

.stakeholders-question-cell {
    font-weight: 600;
    vertical-align: top;
}

.stakeholders-multiselect {
    width: 100%;
    min-height: 110px;
}

.stakeholders-hint {
    margin-top: 6px;
    font-size: 12px;
    color: #666;
}

.stakeholders-table textarea {
    min-height: 72px;
}
.roadmap-scroll-wrapper {
    width: 100%;
    overflow-x: auto;
    overflow-y: visible;
    border: 1px solid #c7cfdb;
}

.roadmap-full-table {
    border-collapse: collapse;
    table-layout: fixed;
    min-width: 2200px; /* force horizontal scroll */
    width: 2200px;
    font-size: 13px;
}

.roadmap-full-table th,
.roadmap-full-table td {
    border: 1px solid #bfc7cf;
    padding: 8px;
    vertical-align: top;
    word-break: break-word;
    white-space: normal;
    line-height: 1.45;
}

.roadmap-full-table thead th {
    background: #d9e2f3;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
}

.roadmap-full-table thead tr:nth-child(2) th {
    font-weight: 600;
    font-size: 12px;
}

/* column widths */
.roadmap-full-table th:nth-child(1),
.roadmap-full-table td:nth-child(1) {
    width: 180px;
}

.roadmap-full-table th:nth-child(2),
.roadmap-full-table td:nth-child(2) {
    width: 180px;
}

.roadmap-full-table th:nth-child(3),
.roadmap-full-table td:nth-child(3) {
    width: 180px;
}

.roadmap-full-table th:nth-child(4),
.roadmap-full-table td:nth-child(4) {
    width: 260px;
}

.roadmap-full-table th:nth-child(5),
.roadmap-full-table td:nth-child(5),
.roadmap-full-table th:nth-child(6),
.roadmap-full-table td:nth-child(6),
.roadmap-full-table th:nth-child(7),
.roadmap-full-table td:nth-child(7),
.roadmap-full-table th:nth-child(8),
.roadmap-full-table td:nth-child(8),
.roadmap-full-table th:nth-child(9),
.roadmap-full-table td:nth-child(9) {
    width: 240px;
}

.roadmap-red-text {
    color: #c00000;
    font-weight: 600;
}

.assumptions-sheet {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;   /* VERY IMPORTANT */
    margin-top: 20px;
    font-size: 16px;
}

.assumptions-sheet td {
    border: 1px solid #1f2937;
    padding: 8px 10px;
    vertical-align: middle;
}

/* Define column widths EXACTLY like Excel */
.assumptions-sheet col.col-a { width: 240px; }   /* smaller label column */
.assumptions-sheet col.col-b { width: 140px; }   /* input */
.assumptions-sheet col.col-c { width: 200px; }   /* description */
.assumptions-sheet col.col-year { width: 100px; } /* wider numeric columns */

/* Inputs */
.sheet-input-cell {
    background: #f5eecf;
    text-align: right;
}

.sheet-input {
    width: 100%;
    border: none;
    background: transparent;
    text-align: right;
    font-size: 15px;
}

/* Prevent ugly wrapping */
.sheet-note {
    background: #f3f4f6;
    font-style: italic;
    white-space: normal;   /* allow wrapping nicely */
}

/* Year headers */
.year-head {
    text-align: center;
    font-weight: bold;
    background: #e5e7eb;
}

/* Calculated cells */
.calc-cell {
    text-align: right;
    background: #f8fafc;
    font-family: monospace;
    white-space: nowrap;   /* IMPORTANT: prevent overflow wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
}

.lcc-wide-sheet {
    table-layout: fixed;
    width: max-content;   /* allows horizontal growth */
    border-collapse: collapse;
    border-spacing: 0;
     min-width: 100%;
}

.lcc-wide-sheet th {
    border: 1px solid #444;
    background: #f2f2f2;
}

.lcc-wide-sheet td {
    border: 1px solid #999;
}

.wi-col-a { width: 140px; }
.wi-col-b { width: 320px; }
.wi-col-c { width: 120px; }
.wi-col-d { width: 100px; }
.wi-col-year { width: 100px; }

.wi-section td {
    background: #dbeafe;
    font-weight: 700;
}

.subsection-row td {
    background: #eef2ff;
    font-weight: 700;
}

.yellow-cell {
    background: #fff2b2;
}

.gray-cell {
    background: #e5e7eb;
}

.blue-cell {
    background: #d9ecff;
    font-weight: 700;
}

.formula-cell {
    background: #ffffff;
    text-align: right;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
}

.wi-input,
.wi-select {
    width: 100%;
    box-sizing: border-box;
    border: none;
    outline: none;
    background: transparent;
    font-size: 14px;
    min-width: 0;
}

.wi-input {
    width: 100%;
    text-align: right;
    padding: 4px 6px;
    font-variant-numeric: tabular-nums;
}

.formula-cell,
.blue-cell,
.light-green-cell {
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.wi-code-cell {
    width: 140px;
    white-space: nowrap;
}

.wi-desc-cell {
    width: 320px;
    white-space: normal;
}
.table-wrapper {
    width: 100%;
    overflow-x: auto;   /* enables horizontal scroll */
    overflow-y: visible;
    border: 2px solid #ccc;   /* visible frame */
    padding: 10px;
    box-sizing: border-box;
}

/* Make sure table is not shrinking */
.assumptions-sheet {
    min-width: 1200px;   /* IMPORTANT: adjust based on your columns */
    border-collapse: collapse;
}

/* Optional: nicer scroll */
.table-wrapper::-webkit-scrollbar {
    height: 10px;
}
.table-wrapper::-webkit-scrollbar-thumb {
    background: #999;
    border-radius: 5px;
}

.wi-text-input {
    text-align: left;
}

.sticky-actions {
    position: sticky;
    top: 0;
    z-index: 10;
    background: #ffffff;
    padding-bottom: 8px;
}

.light-green-cell {
    background: #e2f0d9;
    text-align: right;
    font-weight: normal;   /* FIX */
    font-variant-numeric: tabular-nums;
}

.light-green-row td {
    background: #e2f0d9;
    font-weight: normal;   /* FIX */
}

.lcc-page-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 10px 12px;
}

.lcc-sheet-page {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.content {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    box-sizing: border-box;
    padding: 10px 12px;
}

.lcc-sheet-wrapper {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: auto;
    box-sizing: border-box;
}

.lcc-wide-sheet {
    width: max-content;
    min-width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}

.notification-filter-grid {
    display: grid;
    grid-template-columns: repeat(4, 220px);
    gap: 12px 18px;
    align-items: end;
}

.notification-filter-item {
    width: 220px;
}

.notification-filter-item .capsule-text-input {
    width: 100%;
    padding: 6px 8px;
    font-size: 13px;
    height: 34px;
}

.notification-filter-item .capsule-label {
    font-size: 13px;
    margin-bottom: 4px;
}

.notification-filter-full {
    grid-column: 1 / span 4;
    width: 100%;
}

.notification-filter-full .capsule-text-input {
    width: 100%;
}

@media (max-width: 1200px) {
    .notification-filter-grid {
        grid-template-columns: repeat(2, 220px);
    }

    .notification-filter-full {
        grid-column: 1 / span 2;
    }
}

@media (max-width: 700px) {
    .notification-filter-grid {
        grid-template-columns: 1fr;
    }

    .notification-filter-item,
    .notification-filter-full {
        width: 100%;
        grid-column: auto;
    }
}

.submenu-level-1 {
    padding-left: 14px;
}

.submenu-level-2 {
    padding-left: 18px;
}

.submenu-level-3 {
    padding-left: 22px;
}

.submenu-level-4 {
    padding-left: 26px;
}

.menu-level-2 .submenu-toggle,
.menu-level-3 .submenu-toggle,
.menu-level-4 .submenu-toggle {
    font-size: 14px;
    color: #003b32;
}

.submenu-link {
    font-size: 14px;
}