
/**
 * Dynamic Branding CSS for local_library
 */
:root {
    --ll-primary: #1673BA !important;
    --ll-secondary: #1673BA !important;
    /* Calculated hovers - approximate darkening using CSS color-mix logic where supported, 
       but for raw CSS variables we can't easily do math on hex without pre-processor.
       We will rely on client-side color-mix if modern, or just fallback to same color 
       (or we could do PHP hex math here, which is better).
    */
}

/* Fallback for older browsers or simple calculation */
:root {
    --ll-primary-hover: #1673BA; 
    --ll-secondary-hover: #1673BA;
    --ll-gradient: linear-gradient(135deg, var(--ll-primary) 0%, var(--ll-secondary) 100%) !important;
}

:root {
    --ll-primary-hover: #1367a7 !important;
    --ll-secondary-hover: #1367a7 !important;
}
