/* Peregrine admin console theme — PatternFly v5 variable overrides (#302)
   Applies Peregrine brand palette via CSS custom properties.
   Navy 900: #0f172a  Navy 700: #1a365d  Gold 500: #c5a55a
*/

:root {
  /* Primary action color — buttons, links, focus rings */
  --pf-v5-global--primary-color--100: #c5a55a;
  --pf-v5-global--primary-color--200: #d4b96a;
  --pf-v5-global--link--Color: #c5a55a;
  --pf-v5-global--link--Color--hover: #d4b96a;
  --pf-v5-global--link--Color--visited: #a8893e;

  /* Dark sidebar / nav background */
  --pf-v5-global--BackgroundColor--dark-100: #0f172a;
  --pf-v5-global--BackgroundColor--dark-200: #1a365d;
  --pf-v5-global--BackgroundColor--dark-300: #1e293b;

  /* Top nav bar */
  --pf-v5-c-masthead--BackgroundColor: #0f172a;
  --pf-v5-c-nav--BackgroundColor: #0f172a;
  --pf-v5-c-nav__item--m-current--BackgroundColor: #1a365d;
  --pf-v5-c-nav__link--Color: #cbd5e1;
  --pf-v5-c-nav__link--hover--Color: #f1f5f9;
  --pf-v5-c-nav__link--m-current--Color: #c5a55a;

  /* Focus outline — gold accent */
  --pf-v5-global--focus-ring--color: #c5a55a;

  /* Icons on dark surfaces */
  --pf-v5-global--icon--Color--light: #c5a55a;

  /* Button primary */
  --pf-v5-c-button--m-primary--BackgroundColor: #c5a55a;
  --pf-v5-c-button--m-primary--hover--BackgroundColor: #d4b96a;
  --pf-v5-c-button--m-primary--active--BackgroundColor: #a8893e;
  --pf-v5-c-button--m-primary--Color: #0f172a;

  /* Brand logo area */
  --pf-v5-c-brand--Height: 32px;
}

/* Sidebar logo — replace stock Keycloak mark with Peregrine wordmark */
.pf-v5-c-masthead__brand img,
.pf-v5-c-brand img {
  content: url('/realms/master/theme-resources/peregrine-admin/img/logo.png');
  height: 32px;
  width: auto;
}

/* Top bar text color */
.pf-v5-c-masthead__content,
.pf-v5-c-masthead a,
.pf-v5-c-masthead button {
  color: #e2e8f0 !important;
}

/* Active nav item highlight */
.pf-v5-c-nav__item.pf-m-current > .pf-v5-c-nav__link {
  border-left: 3px solid #c5a55a;
  background-color: rgba(197, 165, 90, 0.08);
}

/* Card / panel surface */
.pf-v5-c-card {
  border: 1px solid rgba(148, 163, 184, 0.15);
}

/* Table header */
.pf-v5-c-table thead th {
  background-color: #1e293b;
  color: #94a3b8;
}
