            #capacitance-container {
                display: flex;
                flex-wrap: wrap;
                gap: 30px;
                max-width: 1200px;
                margin: 0 auto;
                padding: 20px;
                align-items: flex-start;
            }
            
            #capacitance-converter {
                flex: 1;
                min-width: 300px;
            }
            
            #capacitance-chart {
                flex: 0 0 auto;
                background: #fff;
                border-radius: 8px;
                box-shadow: 0 2px 10px rgba(0,0,0,0.1);
                padding: 20px;
                border: 1px solid #e0e0e0;
                max-width: 526px;
            }
            
            .chart-title {
                font-size: 16px;
                font-weight: 600;
                text-align: left;
                margin-bottom: 15px;
                color: #2c3e50;
                padding-bottom: 8px;
                border-bottom: 1px solid #eee;
            }
            
            .image-wrapper {
                width: 486px;
                height: 377px;
                display: flex;
                align-items: center;
                justify-content: center;
                background: #f8f9fa;
                border-radius: 4px;
                overflow: hidden;
                margin: 0 auto;
            }
            
            .image-wrapper img {
                width: 486px;
                height: 377px;
                display: block;
                object-fit: contain;
                transition: opacity 0.3s ease;
                opacity: 0;
            }
            
            .image-wrapper img.loaded {
                opacity: 1;
            }
            
            .capacitance-field {
                margin-bottom: 15px;
            }
            
            .capacitance-field label {
                display: block;
                margin-bottom: 5px;
                font-weight: bold;
                color: #34495e;
            }
            
            .input-group {
                display: flex;
                border-radius: 4px;
                overflow: hidden;
                border: 1px solid #ddd;
                transition: border-color 0.3s;
            }
            
            .input-group:focus-within {
                border-color: #3498db;
                box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
            }
            
            .capacitance-input {
                flex: 1;
                padding: 10px 12px;
                border: none;
                font-size: 16px;
                outline: none;
                background: #fff;
            }
            
            .unit-display {
                width: 60px;
                padding: 0 12px;
                background: #f5f5f5;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 14px;
                color: #555;
                border-left: 1px solid #ddd;
                font-weight: 500;
            }
            
            @media (max-width: 1100px) {
                #capacitance-container {
                    flex-direction: column;
                    align-items: center;
                }
                
                #capacitance-converter {
                    width: 100%;
                    max-width: 500px;
                }
                
                #capacitance-chart {
                    width: 100%;
                    max-width: 526px;
                }
                
                .image-wrapper {
                    width: 100%;
                    height: auto;
                    max-width: 486px;
                    aspect-ratio: 486 / 377;
                }
                
                .image-wrapper img {
                    width: 100%;
                    height: auto;
                    max-width: 486px;
                }
            }
            
            @media (max-width: 600px) {
                #capacitance-container {
                    padding: 15px;
                    gap: 20px;
                }
                
                #capacitance-chart {
                    padding: 15px;
                }
                
                .image-wrapper {
                    max-width: 100%;
                }
                
                .unit-display {
                    width: 50px;
                    padding: 0 8px;
                }
            }