/*
 * Administrative Tab Styling
 *
 * We target the nav element with the 'primary-tabs' aria-labelledby attribute
 * to scope these styles specifically to the local tasks tabs, and not affect
 * other buttons on the site.
*/
nav[aria-labelledby="primary-tabs"] .btn-primary {
  background-color: #485163;
  color: #ffffff;
  border-color: #485163;
}

nav[aria-labelledby="primary-tabs"] .btn-primary:hover,
nav[aria-labelledby="primary-tabs"] .btn-primary.is-active {
  background-color: #2c3e50;
  border-color: #2c3e50;
  color: #ffffff;
} 