/*
 * Local Inter font (no external Google Fonts dependency).
 * Uses Inter variable fonts (normal + italic).
 */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter/InterVariable.woff2?v=4.1') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('/fonts/inter/InterVariable-Italic.woff2?v=4.1') format('woff2');
}

/* Force Inter globally (overwrite AdminLTE defaults). */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Inter', sans-serif !important;
}

/* AdminLTE override: link hover in cabinet */
a:hover,
a:active,
a:focus {
  color: #2EC7D6 !important;
}

/* Icons inside links (e.g. logout icon in header) */
a:hover i,
a:active i,
a:focus i,
a:hover .fa,
a:active .fa,
a:focus .fa {
  color: #2EC7D6 !important;
}

