/* Retirement Calculator Specific Styles */
.retirement-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.2s ease;
}

.retirement-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.results-summary {
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.results-summary h3 {
    font-size: 20px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 16px;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.summary-item {
    padding: 16px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 8px;
    border-left: 4px solid #667eea;
}

.summary-item.warning {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border-left-color: #dc2626;
}

.summary-item.success {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-left-color: #16a34a;
}

.summary-label {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 4px;
    font-weight: 600;
}

.summary-value {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
}

.summary-value.positive {
    color: #16a34a;
}

.summary-value.negative {
    color: #dc2626;
}

.chart-container {
    position: relative;
    background: white;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 400px;
}

.milestone-tag {
    display: inline-block;
    padding: 4px 12px;
    background: #667eea;
    color: white;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    margin-left: 8px;
}

.milestone-tag.retirement {
    background: #f59e0b;
}

.milestone-tag.depletion {
    background: #dc2626;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .chart-container {
        height: 300px;
        padding: 16px;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-value {
        font-size: 20px;
    }
}
