/*
 * site-customizations.css
 *
 * On-site CSS customizations. This file is loaded LAST in the cascade,
 * after all Bootstrap themes, site.css, scoped CSS, DevExpress themes,
 * HeadContent overrides, and ThemeColors CSS variables.
 *
 * Use this file for client-specific style overrides that should not be
 * committed back to the main product codebase.
 *
 * Examples:
 *   - Override --site-primary / --site-secondary CSS variables
 *   - Hide specific UI elements for a particular deployment
 *   - Adjust fonts, spacing, or branding per client
 */

/* ---------------------------------------------------------------
   Custom branding logos — interim override until AB#60614 ships.
   url() paths are relative to THIS file (wwwroot/css/), so "../"
   steps back up to wwwroot.
   --------------------------------------------------------------- */

/* Primary logo — desktop sidebar, nav menu, off-canvas menu, screen headers */
img[src$="1Staff-Logo.png" i] {
    content: url("../images/custom/custom-logo.png") !important;
}

/* Light/white logo — login page, mobile nav bar, auto-approve layout, error pages 
img[src$="1staff-white-logo.svg" i] {
    content: url("../images/custom/custom-logo-white.png") !important;
}*/

/* uncomment to center the logo */

.companylogo {
    float: none;
    display: block;
    margin-left: auto;
    margin-right: auto;
}