/* Layout hotfix to prevent overlapping sections */

/* Add vertical gutters between rows */
.row + .row {
    margin-top: 1rem;
}

/* Disable sticky columns on smaller screens */
@media (max-width: 991.98px) {
    .calculator-section {
        position: static !important;
    }
}

/* Ensure charts reserve vertical space */
.chart-container,
.chart-container canvas {
    min-height: 200px;
}
