        :root { 
            --accent-color: #2e59d9;
            --light-gray: #f8f9fa;
            --border-color: #eaeaea;
            --text-color: #333;
            --text-muted: #6c757d;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
            --info-color: #36b9cc;
        }.funnel{overflow-x:auto}
         .funnel-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1.5rem;
}.funnel-table th, .funnel-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}
.funnel-table th {
    background-color: var(--light-gray);
    font-weight: 600;
    text-align: left;
}.funnel-table tr:nth-child(even) {
    background-color: rgba(44, 125, 160, 0.05);
}
        /* Funnel Specific Styles */
        .funnel-section {
            margin-bottom: 1.5rem;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
            border-radius: 8px;
        }
        
        .funnel-section h5 {
            margin-bottom: 1.5rem;
            color: var(--primary-color);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .input-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            margin-bottom: 1rem;
        }
        
        /* Funnel Visualization Styles */
        .funnel-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 2rem 0;
            width: 100%;
        }
        
        .funnel-stage {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            position: relative;
            margin-bottom: 0.5rem;
        }
        
        .stage-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }
        
        .stage-bar {
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 1.5rem;
            color: white;
            font-weight: 700;
            position: relative;
            transition: all 0.3s;
            box-shadow: 0 0.15rem 0.5rem rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            min-width: 200px;
        }
        
        .stage-bar:hover {
            transform: translateY(-3px);
            box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
        }
        
        .stage-1 { 
            background: linear-gradient(to right, #4e73df, #2e59d9);
            width: 100%;
            max-width: 800px;
        }
        
        .stage-2 { 
            background: linear-gradient(to right, #36b9cc, #2c9faf);
            width: 80%;
            max-width: 640px;
        }
        
        .stage-3 { 
            background: linear-gradient(to right, #1cc88a, #17a673);
            width: 60%;
            max-width: 480px;
        }
        
        .stage-4 { 
            background: linear-gradient(to right, #f6c23e, #dda20a);
            width: 40%;
            max-width: 320px;
        }
        
        .stage-5 { 
            background: linear-gradient(to right, #e74a3b, #be2617);
            width: 20%;
            max-width: 160px;
        }
        
        .stage-info {
            display: flex;
            justify-content: space-between;
            width: 100%;
        }
        
        .stage-label {
            font-size: 1.1rem;
        }
        
        .stage-metrics {
            text-align: right;
        }
        
        .conversion-arrow {
            height: 30px;
            width: 2px;
            background-color: var(--secondary-color);
            position: relative;
            margin: 0.5rem auto;
        }
        
        .conversion-arrow::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: -5px;
            width: 0;
            height: 0;
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            border-top: 8px solid var(--secondary-color);
        }
        
        .conversion-rate {
            text-align: center;
            font-weight: 700;
            color: var(--text-muted);
            margin: 0.5rem 0;
        }
        
        .chart-container {
            height: 400px;
            margin-top: 2rem;
        }
        
        .result-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .result-card {
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 1.25rem;
            text-align: center;
        }
        
        .result-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        
        .result-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .result-desc {
            font-size: 0.85rem;
            color: var(--text-muted);
            margin-top: 0.5rem;
        }
        
        .insight-card {
            background-color: rgba(255, 193, 7, 0.1);
            border-left: 4px solid var(--warning-color);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin-top: 2rem;
        }
        
        .insight-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--warning-color);
        }
        
        .tip-card {
            background-color: rgba(40, 167, 69, 0.1);
            border-left: 4px solid var(--success-color);
            padding: 1.5rem;
            border-radius: 0 8px 8px 0;
            margin-top: 2rem;
        }
        
        .tip-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--success-color);
        }
        
        .method-card {
            background-color: white;
            border-radius: 8px;
            border: 1px solid var(--border-color);
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            transition: transform 0.3s;
        }
        
        .method-card:hover {
            transform: translateY(-5px);
        }
        
        .method-icon {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .method-title {
            font-weight: 600;
            margin-bottom: 0.75rem;
            color: var(--primary-color);
        }
        
        .method-content {
            color: var(--text-muted);
            margin-bottom: 1.5rem;
        }
        
        .method-link {
            font-weight: 600;
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .method-link:hover {
            text-decoration: underline;
        }
        
        .faq-item {
            margin-bottom: 1.5rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .faq-question {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
        }
        
        .faq-answer {
            color: var(--text-muted);
        }
        
        .disclaimer-box {
            background-color: rgba(255, 193, 7, 0.15);
            border-left: 4px solid var(--warning-color);
            padding: 1rem;
            border-radius: 0 4px 4px 0;
            margin: 1.5rem 0;
        }
        
        .cashflow-row {
            display: flex;
            align-items: center;
            margin-bottom: 0.75rem;
            padding: 0.75rem;
            background-color: rgba(44, 125, 160, 0.05);
            border-radius: 6px;
        }
        
        .cashflow-period {
            width: 120px;
            font-weight: 500;
        }
        
        .cashflow-input {
            flex-grow: 1;
            margin-right: 0.75rem;
        }
        
        .delete-btn {
            background-color: rgba(220, 53, 69, 0.1);
            border: none;
            border-radius: 4px;
            color: var(--danger-color);
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .delete-btn:hover {
            background-color: rgba(220, 53, 69, 0.2);
        }
        
        .add-cashflow-btn {
            margin-top: 0.5rem;
        }
        
        .sensitivity-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1.5rem;
        }
        
        .sensitivity-table th, 
        .sensitivity-table td {
            padding: 0.75rem;
            text-align: center;
            border: 1px solid var(--border-color);
        }
        
        .sensitivity-table th {
            background-color: var(--light-gray);
            font-weight: 600;
        }
        
        .sensitivity-table .positive {
            background-color: rgba(40, 167, 69, 0.1);
            color: var(--success-color);
        }
        
        .sensitivity-table .negative {
            background-color: rgba(220, 53, 69, 0.1);
            color: var(--danger-color);
        }
        
        /* Missing Styles Added */
        .metric-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 1rem;
        }
        
        .metric-table th, 
        .metric-table td {
            padding: 0.75rem;
            text-align: left;
            border: 1px solid var(--border-color);
        }
        
        .metric-table th {
            background-color: var(--light-gray);
            font-weight: 600;
        }
        
        .highlight {
            background-color: rgba(255, 193, 7, 0.1);
        }
        
        .section-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        
        .action-btn {
            background-color: white;
            border: 1px solid var(--border-color);
            border-radius: 6px;
            padding: 0.5rem 1rem;
            color: var(--text-muted);
            transition: all 0.3s;
        }
        
        .action-btn:hover {
            background-color: var(--light-gray);
            color: var(--primary-color);
        }
        
        .generating-indicator {
            display: none;
            background-color: rgba(54, 185, 204, 0.1);
            border-left: 4px solid var(--info-color);
            padding: 1rem;
            border-radius: 0 4px 4px 0;
            margin: 1rem 0;
        }
         
        @media (max-width: 768px) {
            .input-row {
                grid-template-columns: 1fr;
                gap: 0.75rem;
            }
            .funnel-section{padding:0rem;border:0px}
            .stage-bar {
                padding: 0 0.75rem;
                height: 50px;
            }
            
            .stage-label {
                font-size: 0.9rem;
            }
        }
    