/* Soul Contract Analysis Basic Styles */
.soul-contract-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: sans-serif;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.submit-btn {
    background-color: #4e5ef7;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
}

/* Update the .loading-container style */
.loading-container {
    display: none; /* Initially hidden */
    text-align: center;
    margin: 20px 0;
}

/* Add this style for errors */
.error {
    color: #e74c3c;
    padding: 10px;
    background-color: #fadbd8;
    border-left: 5px solid #e74c3c;
    margin-bottom: 15px;
}


.loading-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 2s linear infinite;
}

/* Add these to your existing CSS */
.result-section {
    margin-bottom: 20px;
}

.result-section h4 {
    color: #3a539b;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 8px;
    margin-bottom: 10px;
}

.result-section p {
    line-height: 1.6;
}

/* Add a "reset" button style */
.reset-button {
    background-color: #95a5a6;
    color: white;
    border: none;
    padding: 8px 15px;
    margin-top: 20px;
    cursor: pointer;
    border-radius: 4px;
}

.reset-button:hover {
    background-color: #7f8c8d;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    margin-top: 10px;
    color: #3498db;
    font-style: italic;
}

/* Add these to your soul-contract.css file */

/* Progress bar styles */
.progress-container {
    width: 100%;
    height: 20px;
    background-color: #f3f3f3;
    border-radius: 10px;
    margin: 20px 0;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, #4e5ef7 0%, #8c7ae6 100%);
    transition: width 0.5s ease;
}

.loading-container {
    display: none;
    text-align: center;
    margin: 20px 0;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.loading-text {
    font-size: 18px;
    font-weight: bold;
    color: #4e5ef7;
    margin-bottom: 5px;
}

.loading-subtext {
    color: #666;
    font-style: italic;
    margin-top: 0;
}

/* Result section styling */
.result-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.result-section:last-child {
    border-bottom: none;
}

.result-section h4 {
    color: #4e5ef7;
    font-size: 20px;
    margin-bottom: 15px;
    border-left: 4px solid #4e5ef7;
    padding-left: 10px;
}

.result-section p {
    line-height: 1.7;
    color: #333;
}

/* Reset button styling */
.reset-button {
    background-color: #8c7ae6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.reset-button:hover {
    background-color: #4e5ef7;
}

/* Error message */
.error {
    color: #e74c3c;
    padding: 15px;
    background-color: #fadbd8;
    border-left: 5px solid #e74c3c;
    margin-bottom: 20px;
    border-radius: 4px;
}


Update only the plugin file's enqueue section to include this CSS:

php// Add this near the top of your soul-contract-simple.php file
// Define plugin constants
define('SOUL_CONTRACT_SIMPLE_VERSION', '1.0.0');
define('SOUL_CONTRACT_SIMPLE_PATH', plugin_dir_path(__FILE__));
define('SOUL_CONTRACT_SIMPLE_URL', plugin_dir_url(__FILE__));

// Enqueue scripts and styles
add_action('wp_enqueue_scripts', 'soul_contract_simple_scripts');

function soul_contract_simple_scripts() {
    // Enqueue CSS
    if (file_exists(SOUL_CONTRACT_SIMPLE_PATH . 'assets/css/soul-contract.css')) {
        wp_enqueue_style(
            'soul-contract-style',
            SOUL_CONTRACT_SIMPLE_URL . 'assets/css/soul-contract.css',
            array(),
            SOUL_CONTRACT_SIMPLE_VERSION
        );
    }
}