/* ============================================================
   CheapestSupply Portal - Default Theme
   assets/css/themes/default.css
   ============================================================ */

/* -------------------------------------------------------
   DEFAULT THEME COLORS
   Override these in other theme files (e.g. themes/dark.css)
   ------------------------------------------------------- */

:root {
    --theme-primary:        #0d6efd;   /* Bootstrap blue */
    --theme-primary-hover:  #0b5ed7;
    --theme-header-bg:      #ffffff;
    --theme-header-border:  #e9ecef;
    --theme-footer-bg:      #f8f9fa;
    --theme-card-bg:        #ffffff;
    --theme-body-bg:        #ffffff;
}

body {
    background-color: var(--theme-body-bg);
}

/* Footer link contrast fix - addresses PageSpeed accessibility warning */
.site-footer a,
.site-footer a:visited {
    color: #495057;   /* Darker grey - passes WCAG AA contrast on white bg */
}

.site-footer a:hover {
    color: #212529;
}