:root {
    /* PRIMARY: Vibrant Carrot Orange - High visibility for actions */
    --app-primary: #F06529;
    --app-primary-soft: #FEF0EA;
    --app-primary-dark: #C2410B;

    /* SECONDARY: Fresh Stalk Green - For supporting elements */
    --app-secondary: #5C940D; /* Natural leafy green */
    --app-secondary-soft: #F2F8E6;
    --app-secondary-dark: #3F6609;

    /* ACCENT: Earth & Soil - Neutral transitions */
    --app-accent: #795548;
    --app-accent-soft: #EFEBE9;
    --app-accent-dark: #4E342E;

    /* STATUS COLORS: Kept standard but warmer */
    --app-success: #2E7D32; /* Deep crop green */
    --app-success-soft: #E8F5E9;
    --app-success-dark: #1B5E20;

    --app-warning: #FFA000; /* Amber */
    --app-warning-soft: #FFF8E1;
    --app-warning-dark: #FF6F00;

    --app-danger: #D32F2F; /* Red */
    --app-danger-soft: #FFEBEE;
    --app-danger-dark: #B71C1C;

    /* LAYERS: Warm whites and very subtle earthy greys */
    --app-layer-one: #ffffff;
    --app-layer-two: #FBFCF8; /* Hint of warm organic white */
    --app-layer-three: #F4F5F0; /* Light organic grey */
    --app-layer-four: #FEF0EA; /* Matches primary-soft */

    --app-alt-layer-one: #ffffff;
    --app-alt-layer-two: #FAFBF9;
    --app-alt-layer-three: #F5F7F2;
    --app-alt-layer-four: #ECEFE9;

    --app-card-header: #FAFBF9;

    /* TEXT COLORS */
    --app-default-attribute-title-color: #6D7278; /* Neutral grey */
    --app-default-button-text-color: #ffffff;
    --app-default-text-color: #2C3E36; /* Deep Jungle Green-Grey (Softer than black) */
    --app-default-alt-text-color: #546E66;
    --app-default-link-color: #F06529; /* Matches Primary Orange */
    --app-default-link-hover-color: #5C940D; /* Hover turns to Leaf Green */

    /* INVERTED TEXT */
    --app-inverted-text-color: #ffffff;
    --app-inverted-alt-text-color: #F2F8E6;

    /* SIDE NAVIGATION: Deep Forest Green (Replaces the Purple) */
    /* This provides a rich, organic backdrop for the logo */
    --app-side-navigation-bg-color: #1A3C34; /* Dark, rich agricultural green */
    --app-side-navigation-text-color: #E8F5E9; /* Off-white green tint */
    --app-side-navigation-link-color: #E8F5E9;
    --app-side-navigation-link-hover-color: #F06529; /* Orange Pop on hover */

    /* TOP NAVIGATION */
    --app-top-navigation-bg-color: #ffffff;
    --app-top-navigation-text-color: #2C3E36;
    --app-top-navigation-link-color: #2C3E36;
    --app-top-navigation-link-hover-color: #F06529;

    /* FOOTER */
    --app-footer-bg-color: #F4F5F0;
    --app-footer-text-color: #546E66;
    --app-footer-link-color: #F06529;
    --app-footer-link-hover-color: #5C940D;

    /* TABLES */
    --app-table-row-color: #ffffff;
    --app-table-row-alt-color: #FBFCF8;
    --app-table-row-hover-color: #F2F8E6;

    --bs-border-color: #ECEFE9;

    /* SHADOWS: Natural tones */
    --app-shadow-light: rgba(26, 60, 52, 0.05);
    --app-shadow-medium: rgba(26, 60, 52, 0.1);
    --app-shadow-heavy: rgba(26, 60, 52, 0.15);
    --app-shadow-navigation: rgba(26, 60, 52, 0.25);

    --app-border-translucent-light: rgba(26, 60, 52, 0.1);
    --app-focus-ring-primary: rgba(240, 101, 41, 0.25);
}