/* Front-End Styling for Interest Calculator */

.results-wrapper {
    display: flex;
    gap: 50px;
    justify-content: space-evenly;
}

.annual-results {
    /* border-left: 2px solid #ccc; */
    padding-left: 20px;
}

.chart-wrapper {
    display: none; /* Hide charts initially */
    gap: 30px;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.chart-wrapper.show {
    display: flex; /* Show charts when calculation is done */
}

.chart-container {
    width: 45%;
    min-width: 280px;
}

.chart-wrapper canvas {
    width: 100% !important;
}

p.calculator-disclaimer {
    font-size: 0.8em;
    color: #666;
    margin-top: 10px;
    font-style: italic;
}
