/*
 * DIS branding — shared base (loaded on both the customer and staff portals).
 * Injected by the container's Apache config; osTicket-OSS is never modified.
 * Font: Titillium Web is a free, geometric technical sans that stands in for the
 * brand face (eurostile) used on dis-sensors.com.
 */
@import url('https://fonts.googleapis.com/css2?family=Titillium+Web:wght@400;600;700&display=swap');

:root {
  --dis-blue: #007AC2;
  --dis-blue-dark: #005f9a;
  --dis-teal: #073A49;
  --dis-ink: #1D1D1B;
  --dis-row: #f5fafd;
  --dis-row-hover: #eaf4fb;
  --dis-line: #dce3e7;
  --dis-font: 'Titillium Web', 'Helvetica Neue', Arial, sans-serif;
}

/* Base type. Icon fonts (<i class="icon-…">) set their own font-family at higher
   specificity, so they are unaffected by this. */
body,
input,
select,
textarea,
button,
.thread-body,
.tip_box {
  font-family: var(--dis-font) !important;
}

/* Brand accent for links */
a,
.link {
  color: var(--dis-blue);
}
a:hover,
.link:hover {
  color: var(--dis-blue-dark);
}
