/* App Foundry design language applied to the Django admin (Past Lives accent). */
:root {
  --primary: #b45309;            /* forge copper */
  --primary-fg: #ffffff;
  --secondary: #92400e;
  --accent: #b45309;
  --link-fg: #92400e;
  --link-hover-color: #b45309;
  --header-bg: #b45309;
  --header-color: #ffffff;
  --header-branding-color: #ffffff;
  --header-link-color: #ffffff;
  --breadcrumbs-bg: #92400e;
  --breadcrumbs-fg: #fff7ed;
  --button-bg: #b45309;
  --button-hover-bg: #92400e;
  --default-button-bg: #b45309;
  --default-button-hover-bg: #92400e;
  --object-tools-bg: #92400e;
  --object-tools-hover-bg: #7c2d12;
  --selected-row: #fef3c7;
  --font-family-primary: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}
#header { background: var(--header-bg); color: #fff; }
#branding h1, #branding h1 a:link, #branding h1 a:visited { color: #fff; font-weight: 700; }
div.breadcrumbs { background: var(--breadcrumbs-bg); color: var(--breadcrumbs-fg); }
div.breadcrumbs a { color: #fff; }
a:link, a:visited { color: var(--link-fg); }
.module h2, .module caption, .inline-group h2 { background: var(--primary); }
.button, input[type=submit], input[type=button], .submit-row input, a.button {
  background: var(--button-bg);
}
.button:hover, input[type=submit]:hover { background: var(--button-hover-bg); }
.object-tools a { background: var(--object-tools-bg); }
