/*
 * Audit P3-3: dashboard branding overrides.
 *
 * This file loads AFTER public/css/main.css and public/css/dashboard.css, so any
 * rules you add here win the cascade. Edit freely - the core CSS is left untouched.
 *
 * Common things to customize:
 *
 *   1. PRIMARY COLOR
 *      Inspect main.css with DevTools to find which CSS custom properties drive
 *      the theme. Override in :root, e.g.:
 *
 *      :root {
 *          --primary-color: #ff6600;
 *          --primary-hover: #cc5500;
 *      }
 *
 *   2. LOGO IN NAVBAR
 *      Templates render <i class="fas fa-ticket-alt"></i> for the logo.
 *      Hide the icon and use an image instead:
 *
 *      .navbar-logo i { display: none; }
 *      .navbar-logo {
 *          background: url('/public/img/logo.svg') center/contain no-repeat;
 *          width: 28px; height: 28px;
 *      }
 *
 *      Then drop your SVG/PNG file at public/img/logo.svg (overwriting the
 *      default ticket logo). The same file is also used as the favicon.
 *
 *   3. FONTS
 *      The default font is Inter (loaded from Google Fonts in dash-layout.html).
 *      Override on body or specific selectors:
 *
 *      body, .navbar-brand-name {
 *          font-family: 'Your Font Name', sans-serif;
 *      }
 *
 *   4. BRAND PILL TEXT
 *      The "Dashboard" pill in the navbar is hardcoded text.
 *      To change it without editing dash-layout.html, hide and replace via CSS:
 *
 *      .navbar-pill { font-size: 0; }
 *      .navbar-pill::after {
 *          content: 'My Brand';
 *          font-size: 0.75rem;
 *      }
 *
 * After editing this file, hard-reload the dashboard (Ctrl+F5 / Cmd+Shift+R)
 * to bypass browser cache.
 */

/* Add your overrides below this line. */
