/* Environment-specific Branding and Whitelabelling
 *
 * This file is loaded at runtime and can be swapped per environment/deployment.
 * In Docker deployments, mount environment-specific files to /app/public/branding.css
 *
 * Usage:
 * - Override CSS variables defined in src/styles/main.css
 * - Customize colors, fonts, and other brand-specific styles
 * - Each deployment can have its own version of this file
 *
 * Example deployment-specific files:
 * - branding-zilch.css (Zilch branding)
 * - branding-carbn.css (Carbn branding)
 * - branding-client.css (Custom client branding)
 *
 * To use in Docker:
 * docker run -v ./branding-client.css:/app/public/branding.css ...
 */

:root {
    /* PRIMARY COLORS - Customize for your brand */
    /* --color-primary: #A4EA6E; */
    /* --font-color: #042B2F; */
    /* --bg-color: #FAFAFA; */
    /* --bg-secondary-color: #042B2F; */

    /* BRAND-SPECIFIC GRADIENTS */
    /* --zilch-public-background: linear-gradient(-51.45deg,
            rgba(228, 240, 236, 1) 0%,
            rgba(156, 204, 248, 1) 100%); */

    /* --zilch-public-card: linear-gradient(93.79deg,
            rgba(228, 240, 236, 1) 0%,
            rgba(156, 204, 248, 1) 100%); */

    /* FONTS - Customize font families if needed */
    /* --regular-font-family: DmSans-Regular, sans-serif; */
    /* --medium-font-family: DmSans-Medium, sans-serif; */
    /* --semi-bold-font-family: DmSans-SemiBold, sans-serif; */
    /* --bold-font-family: DmSans-Bold, sans-serif; */

    /* NOTIFICATION COLORS */
    /* --notification-colours-error: #ca4d4d; */
    /* --notification-colours-warning: #ffc164; */
    /* --notification-colours-correct: #0aaf6c; */

    /* Add your environment-specific overrides below */
    /* Uncomment and modify the variables above, or add new ones */
}

/* Additional custom styles for this environment can be added here */
