/*
 * 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;
}

/*.header
{
	height: 70px;
	background: #FFFFFF;
}*/
/* uncomment to put logo on the left  */

.companylogo {
    height: 60px !important;
    padding: 5px;
    float: none !important;
}

div.navigationBar {
    overflow: visible;
}

div.dividerBar {
    display: block;
}

/* ===============================================================
   CLIENT BRANDING — SCREEN HEADER BANNER COLOR
   Post-deployment customization. Re-apply after every upgrade.
   Last updated: <date> by <name>
   =============================================================== */

/* Banner strip at the top of the timesheet and other screen-header pages.
   :not(.bg-rejected) preserves the red banner on rejected timesheets. */
.screen-header-image-container:not(.bg-rejected) {
    background-color: #00A2E8 !important;
}