.amortization-chart-container {
    margin-top: 1rem;
}

.cyber-chart-container {
    position: relative;
    height: 190px; /* Increased from 160px to make chart taller and add more space */
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
}

/* Simplified chart styles without grid lines, labels or legend */
.chart-svg {
    width: 100%;
    height: 130px; /* Increased from 120px to match taller container */
    overflow: visible;
}

/* Legend styles */
.chart-legend {
    display: flex;
    justify-content: center;
    margin-top: 15px; /* Increased from 10px to add more space below the chart */
    margin-bottom: 10px; /* Added bottom margin for extra spacing */
    gap: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.legend-color {
    display: inline-block;
    width: 12px;
    height: 12px;
    margin-right: 6px;
    border-radius: 3px;
}