/**
 * interactive_visualization.css - Extracted styles for interactive_visualization
 * Author: David (davestj)
 * Extracted on: 2025-07-25 21:40:15
 */

/* index.css - Main styling for our visualization dashboard */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: #0a0a0a;
            color: #ffffff;
            overflow-x: hidden;
        }

        /* Header with professional branding */
        .header {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            padding: 2rem;
            text-align: center;
            border-bottom: 2px solid #0f4c75;
            position: relative;
            overflow: hidden;
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(15, 76, 117, 0.1) 0%, transparent 70%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(0.8); opacity: 0.5; }
            50% { transform: scale(1.2); opacity: 0.8; }
        }

        h1 {
            font-size: 2.5rem;
            margin-bottom: 0.5rem;
            position: relative;
            z-index: 1;
        }

        .subtitle {
            font-size: 1.2rem;
            color: #3fbac2;
            position: relative;
            z-index: 1;
        }

        /* Navigation tabs for different visualizations */
        .nav-tabs {
            display: flex;
            justify-content: center;
            background: #16213e;
            padding: 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .nav-tab {
            padding: 1rem 2rem;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            background: none;
            color: #ffffff;
            font-size: 1rem;
            position: relative;
        }

        .nav-tab:hover {
            background: rgba(63, 186, 194, 0.1);
        }

        .nav-tab.active {
            background: rgba(63, 186, 194, 0.2);
        }

        .nav-tab.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #3fbac2;
        }

        /* Main content area */
        .content {
            min-height: calc(100vh - 200px);
            padding: 2rem;
        }

        .visualization-container {
            max-width: 1200px;
            margin: 0 auto;
            display: none;
        }

        .visualization-container.active {
            display: block;
        }

        /* Canvas for our visualizations */
        .viz-canvas {
            width: 100%;
            height: 600px;
            background: #0d1117;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            position: relative;
            overflow: hidden;
        }

        /* Control panel for interactive elements */
        .controls {
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(22, 33, 62, 0.5);
            border-radius: 8px;
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
            align-items: center;
        }

        .control-group {
            flex: 1;
            min-width: 200px;
        }

        .control-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: #3fbac2;
            font-weight: 500;
        }

        .control-group input[type="range"] {
            width: 100%;
            height: 6px;
            background: #1a1a2e;
            outline: none;
            border-radius: 3px;
            -webkit-appearance: none;
        }

        .control-group input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            width: 18px;
            height: 18px;
            background: #3fbac2;
            border-radius: 50%;
            cursor: pointer;
        }

        .control-value {
            text-align: center;
            margin-top: 0.5rem;
            font-size: 1.2rem;
            font-weight: bold;
            color: #ffffff;
        }

        /* Information panels */
        .info-panel {
            margin-top: 2rem;
            padding: 1.5rem;
            background: rgba(22, 33, 62, 0.3);
            border-radius: 8px;
            border-left: 4px solid #3fbac2;
        }

        .info-panel h3 {
            margin-bottom: 1rem;
            color: #3fbac2;
        }

        .info-panel p {
            line-height: 1.6;
            color: #e0e0e0;
        }

        /* Mathematical equation display */
        .equation-display {
            background: rgba(0, 0, 0, 0.5);
            padding: 1rem;
            border-radius: 4px;
            font-family: 'Courier New', monospace;
            margin: 1rem 0;
            overflow-x: auto;
        }

        /* Loading animation */
        .loading {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 1.5rem;
            color: #3fbac2;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .nav-tab { padding: 0.8rem 1.2rem; font-size: 0.9rem; }
            .controls { flex-direction: column; gap: 1rem; }
        }

