
/**
 * Dynamic Branding CSS for local_library
 */
:root {
    --ll-primary: #1473B7 !important;
    --ll-secondary: #153c68 !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: #1473B7; 
    --ll-secondary-hover: #153c68;
    --ll-gradient: linear-gradient(135deg, var(--ll-primary) 0%, var(--ll-secondary) 100%) !important;
}

:root {
    --ll-primary-hover: #1267a4 !important;
    --ll-secondary-hover: #12365d !important;
}
