/**
 * 2026 Dialog
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
 * versions in the future. If you wish to customize PrestaShop for your
 * needs please refer to http://www.prestashop.com for more information.
 *
 * @author    Axel Paillaud <contact@axelweb.fr>
 * @copyright 2026 Dialog
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

/**
 * AskDialog CSS Custom Properties
 *
 * Priority system:
 * 1. User settings (via BO) - defined inline with !important in displayfooterafter.tpl
 * 2. Theme overrides - can be defined in theme CSS files
 * 3. Module defaults - defined below (fallback values)
 */

:root {
    /* Default appearance values (fallback) */
    --askdialog-primary-color: #CCCCCC;
    --askdialog-bg-color: #FFFFFF;
    --askdialog-cta-text-color: #000000;
    --askdialog-cta-border-type: solid;
    --askdialog-font-family: Arial, sans-serif;
}

/* Example usage - uncomment and customize as needed */
/*
#dialog-shopify-ai {
    background-color: var(--askdialog-bg-color);
    font-family: var(--askdialog-font-family);
}

#dialog-shopify-ai button {
    background-color: var(--askdialog-primary-color);
    color: var(--askdialog-cta-text-color);
    border-style: var(--askdialog-cta-border-type);
    font-family: var(--askdialog-font-family);
}
*/
