/*
 * Gold Leaf Holdings — Brand CSS Override
 * Injected into Paperless-ngx via nginx sub_filter.
 * No Paperless-ngx source code modifications required.
 *
 * Brand: #FCB51B (rgb 252, 181, 27) — yellow/orange accent
 * Background: #FFFFFF  |  Text: #333333
 */

:root {
  --bs-primary: #FCB51B !important;
  --bs-primary-rgb: 252, 181, 27 !important;
  --pngx-primary: #FCB51B !important;
}

/* Primary buttons */
.btn-primary {
  background-color: #FCB51B !important;
  border-color: #FCB51B !important;
  color: #333333 !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #FCB51B !important;
  border-color: #FCB51B !important;
  filter: brightness(0.9);
  color: #333333 !important;
}

/* Background highlights */
.bg-primary {
  background-color: #FCB51B !important;
}

/* Active navigation links */
.nav-link.active,
a.active {
  color: #FCB51B !important;
}

/* Focus rings */
:focus {
  outline-color: #FCB51B !important;
}

/* Sidebar / navbar active state (Angular ngb-nav) */
.active > .nav-link,
ngb-nav .nav-link.active {
  color: #FCB51B !important;
  border-color: #FCB51B !important;
}

/* Badges and pills */
.badge.bg-primary,
.badge-primary {
  background-color: #FCB51B !important;
  color: #333333 !important;
}

/* Links */
a {
  color: #FCB51B !important;
}

a:hover {
  filter: brightness(0.85);
}
