/* Site customization CSS for Reboot Data Portal
 * This file contains brand colors and UI customizations
 * extracted from ckan.ini ckan.site_custom_css setting
 */

/* --- Account masthead (top bar) --- */
.account-masthead {
  background-color: #171751 !important; /* deep blue background */
}
.account-masthead,
.account-masthead a,
.account-masthead i,
.account-masthead .nav > li > a {
  color: #ffffff !important;            /* white text/icons */
}
.account-masthead a:hover,
.account-masthead .nav > li > a:hover {
  background-color: #ffffff !important; /* white background on hover */
  color: #171751 !important;            /* dark blue text/icons */
}

/* --- Main masthead (logo/search/menu) --- */
.masthead {
  background-color: #ffffff !important; /* white background */
}
.masthead .navbar-nav > li > a,
.masthead .site-search input {
  color: #171751 !important;            /* dark blue text */
}
/* Navbar link hover, focus, active */
.masthead .main-navbar ul li:hover a,
.masthead .main-navbar ul li:focus a,
.masthead .main-navbar ul li.active a {
  background-color: #171751 !important;
  color: #ffffff !important;
}

/* --- Buttons --- */
.btn,
.btn-primary,
.btn-default,
.btn-success,
.btn-info,
.btn-warning,
.btn-danger {
  background-color: #171751 !important; /* deep blue buttons */
  color: #ffffff !important;            /* white text */
  border-color: #171751 !important;
}
.btn:hover,
.btn:focus {
  background-color: #0f0f3a !important; /* darker on hover */
  border-color: #0f0f3a !important;
  color: #ffffff !important;
}

/* --- Homepage search module --- */
.homepage .module-search .search-form {
  background-color: #171751 !important; /* deep blue bar */
}
.homepage .module-search .search-form input,
.homepage .module-search .search-form .btn {
  background-color: #ffffff !important; /* white input/button */
  color: #171751 !important;            /* dark blue text */
  border-color: #171751 !important;
}
/* Homepage tags */
.homepage .module-search .tags {
  background-color: #171751 !important;
  color: #ffffff !important;
  border-radius: 4px;
}
.homepage .module-search .tags a {
  color: #ffffff !important;
}
.homepage .module-search .tags a:hover {
  text-decoration: underline;
}

/* --- Generic tags (site-wide) --- */
.tag,
a.tag {
  background-color: #171751 !important;
  color: #ffffff !important;
  border-radius: 4px;
}
.tag:hover,
a.tag:hover {
  background-color: #0f0f3a !important;
  color: #ffffff !important;
}

/* --- Footer --- */
.site-footer {
  background-color: #171751 !important; /* deep blue */
  color: #ffffff !important;            /* white text */
}
.site-footer a {
  color: #ffffff !important;            /* footer links white */
}
.site-footer a:hover {
  text-decoration: underline;           /* add underline on hover */
}
