.section-container {
    padding: 20px;
    background-color: white;
    border-radius: 6px;
}

.section {
    margin-bottom: 30px;
}

.section-title {
    font-size: 16px;
    font-weight: bold;
}

.row, .section-header-row {
    display: grid;
    grid-template-columns: 220px 200px 1fr;
    align-items: center;
    margin: 2px 0;
}

.section-header-row {
    margin-top: 12px;
    margin-bottom: 2px;
}

.label {
    text-align: left;
    padding-left: 8px;
}

.bold {
    font-weight: bold;
}

.value {
    text-align: right;
    white-space: nowrap;
    padding-right: 8px;
}

.summary-divider {
    border-top: 1px solid #ccc;
    grid-column: span 2;
    height: 1px;
    margin: 0;
    align-self: center;
}

.section-header {
    grid-column: span 2;
    background-color: #f2f2f2;
    border-radius: 4px;
    padding: 6px 8px;
    font-weight: bold;
    font-size: 16px;
}

.value-summary {
    font-weight: bold;
    color: var(--color-green);
}

.divider {
    border-top: 1px solid #ccc;
    margin: 2px 0 20px;
}

.full-row-label {
    grid-column: span 3;
    text-align: left;
    padding: 0px 8px;
}

.row-full {
    display: block;
    margin: 2px 0;
}

.row-4col, .section-header-row-4col {
    display: grid;
    grid-template-columns: 220px 150px 200px 150px 1fr;
    align-items: center;
    margin: 2px 0;
}

.section-header-row-4col {
    margin-top: 12px;
    margin-bottom: 2px;
}

.section-header-4col {
    background-color: #f2f2f2;
    border-radius: 4px;
    padding: 6px 8px;
    font-weight: bold;
    font-size: 14px;
    text-align: left;
}

.row-1col, .section-header-row-1col {
    display: grid;
    grid-template-columns: 900px 1fr;
    align-items: center;
    margin: 2px 0;
}

.section-header-row-1col {
    margin-top: 12px;
    margin-bottom: 2px;
}

.section-header-1col {
    background-color: #f2f2f2;
    border-radius: 4px;
    padding: 6px 8px;
    font-weight: bold;
    font-size: 14px;
    text-align: left;
}

.value-header {
    text-align: left;
    font-weight: bold;
    background-color: #f2f2f2;
    padding: 6px 8px;
    border-radius: 4px;
    font-size: 14px;
}

.instruction-text {
    text-align: left;
    padding-left: 8px;
    line-height: 1.8;
}