
        .tab-button {
            padding: 0.75rem 1.5rem;
            border-bottom: 2px solid transparent;
            color: #4B5563;
            cursor: pointer;
        }
        
        .tab-button.active {
            border-bottom-color: #2563EB;
            color: #2563EB;
        }
        
        .tab-button:hover {
            color: #1F2937;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .form-field {
            margin-bottom: 1rem;
        }
        
        .form-field label {
            display: block;
            font-size: 0.875rem;
            font-weight: 500;
            margin-bottom: 0.25rem;
            color: #374151;
        }
        
        .form-field input,
        .form-field select {
            width: 100%;
            padding: 0.5rem;
            border: 1px solid #D1D5DB;
            border-radius: 0.5rem;
            outline: none;
        }
        
        .form-field input:focus,
        .form-field select:focus {
            border-color: #2563EB;
            box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
        }

        .chart-container {
            height: 300px;
            position: relative;
        }
 
        .curve-selection {
            display: flex;
            flex-wrap: wrap;
            justify-content: center ;
            align-items: center;
        }
        
        .curve-selection label {
            margin-right: 20px;
        }

        .curve-selection label {
            display: inline-block;
            margin-right: 20px;
        }

        .field-curve-selection {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }
        
        .field-curve-selection label {
            margin-right: 20px;
        }

        #reset-button, #reset-button_Exitation-signal, #reset-button_Voltage {
            background-color: #4CAF50;
            color: #fff;
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 1rem; /* Add some space above the button */
        }
        
        #reset-button:hover, #reset-button_Exitation-signal:hover, #reset-button_Voltage:hover {
            background-color: #3e8e41;
        }