 
        /* Results Section */
        .result-container {
            background-color: var(--light-gray);
            border-radius: 6px;
            padding: 1.5rem;
            margin-top: 1.5rem;
            position: relative;
            border: 1px solid var(--border-color);
        }
        
        .result-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--primary-color);
        }
        
        .chart-container {
            height: 300px;
            margin: 2rem 0;
            position: relative;
        }
        
        .comparison-chart {
            height: 400px;
            margin: 2rem 0;
        }
        
        /* 401k Specific Styles */
        .summary-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .summary-card {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            border: 1px solid var(--border-color);
            text-align: center;
        }
        
        .result-value {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 0.5rem 0;
        }
        
        .result-label {
            color: var(--text-muted);
            font-size: 0.9rem;
        }
        
        .contribution-breakdown {
            background-color: rgba(169, 214, 229, 0.1);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-left: 3px solid var(--primary-color);
        }
        
        .match-details {
            background-color: rgba(44, 125, 160, 0.05);
            border-radius: 8px;
            padding: 1.5rem;
            margin: 1.5rem 0;
            border-left: 3px solid var(--primary-color);
        }
        
        .highlight {
            animation: highlight 1.5s ease;
        }
        
        @keyframes highlight {
            0% { background-color: rgba(169, 214, 229, 0.3); }
            100% { background-color: transparent; }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .tool-container {
                flex-direction: column;
            }
            
            .tool-sidebar {
                width: 100%;
            }
        }
    