/* Ensure our custom theme is applied by piggy-backing on the template's main.css link */
@import url('site.css');

/* Safety: constrain logo/icon size in navbar */
#logo, .navbar-brand img {
  height: 28px !important;
  max-height: 28px !important;
  width: auto !important;
  margin-right: 8px;
  display: inline-block;
}

/* Avoid header/content overlap */
header { overflow: hidden; }
.subnav + .container.body-content { margin-top: 12px; }
header + .container.body-content { margin-top: 12px; }

/* Restore collapse behavior if any theme override interfered */
#navbar.collapse { display: none; }
#navbar.collapse.in { display: block; }
