        :root {
            --primary-color: #1e6f9f;
            --secondary-color: #64b5f6;
            --accent-color: #0d47a1;
            --light-gray: #f8f9fa;
            --border-color: #eaeaea;
            --text-color: #333;
            --text-muted: #6c757d;
            --success-color: #28a745;
            --warning-color: #ffc107;
            --danger-color: #dc3545;
            --seismic-low: #4caf50;
            --seismic-medium: #ff9800;
            --seismic-high: #f44336;
        }
        
      
        .page-header {
            background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(255, 152, 0, 0.1) 100%);
            padding: 1.5rem 0;
            margin-bottom: 2rem;
            border-bottom: 1px solid rgba(244, 67, 54, 0.2);color: var(--text-color);
        }
        
    
        .financial-summary {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        
        .financial-item {
            background: white;
            border-radius: 8px;
            padding: 1.5rem;
            border: 1px solid var(--border-color);
        }
        
        .financial-item .value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .chart-container {
            position: relative;
            height: 400px;
            width: 100%;
            margin: 2rem 0;
        }
        
        .section-title {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--primary-color);
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--border-color);
        }
        .breadcrumb-item a,.breadcrumb-item.active{color: var(--text-color);}
        .seismic-visualization {
            background-color: #f8f9fa;
            border-radius: 6px;
            padding: 1rem;
            margin: 1.5rem 0;
            border: 1px solid #dee2e6;display:none
        }
        
        .seismic-diagram {
            width: 100%;
            height: 300px;
            border: 1px solid #ddd;
            border-radius: 4px;
            background-color: white;
        }
        
        .parameter-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .parameter-table th, .parameter-table td {
            padding: 0.75rem;
            text-align: left;
            border-bottom: 1px solid #dee2e6;
        }
        
        .parameter-table th {
            background-color: #f8f9fa;
            font-weight: 600;
        }
        
        .unit-converter {
            background-color: rgba(244, 67, 54, 0.05);
            border-radius: 6px;
            padding: 1rem;
            margin: 1rem 0;
        }
        
        .seismic-level-indicator {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .seismic-low {
            background-color: rgba(76, 175, 80, 0.2);
            color: var(--seismic-low);
        }
        
        .seismic-medium {
            background-color: rgba(255, 152, 0, 0.2);
            color: var(--seismic-medium);
        }
        
        .seismic-high {
            background-color: rgba(244, 67, 54, 0.2);
            color: var(--seismic-high);
        }
        
        .soil-type-indicator {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            margin-right: 0.5rem;
        }
        
        .soil-A { background-color: #8B4513; }
        .soil-B { background-color: #A0522D; }
        .soil-C { background-color: #D2691E; }
        .soil-D { background-color: #CD853F; }
        .soil-E { background-color: #DEB887; }
        .soil-F { background-color: #F4A460; }
        
        .response-spectrum-chart {
            height: 350px;
            width: 100%;
        }
        
        .modal-body .chart-container {
            height: 300px;
        }
        
        @media (max-width: 768px) {
 
            .financial-summary {
                grid-template-columns: 1fr;
            }
        }
        
        .calculation-modes {
            display: flex;
            background-color: var(--light-gray);
            border-radius: 6px;
            padding: 4px;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
        }
        
        .mode-btn {
            flex: 1;
            text-align: center;
            padding: 0.75rem;
            border-radius: 4px;
            cursor: pointer;
            font-weight: 600;
            min-width: 120px;
            margin: 2px;
        }
        
        .mode-btn.active {
            background-color: var(--primary-color);
            color: white;
        }
        
        .mode-form {
            display: none;
        }
        
        .mode-form.active {
            display: block;
        }
        
        .info-box {
            background-color: rgba(30, 111, 159, 0.05);
            border-radius: 6px;
            padding: 1rem;
            margin: 1rem 0;
            border-left: 4px solid var(--primary-color);
        }
        
        .toast-container {
            z-index: 1055;
        }
        
        .story-forces-table {
            width: 100%;
            border-collapse: collapse;
        }
        
        .story-forces-table th, .story-forces-table td {
            padding: 0.5rem;
            text-align: center;
            border: 1px solid #dee2e6;
        }
        
        .story-forces-table th {
            background-color: #f8f9fa;
            font-weight: 600;
        }
    