@import './components/form.css';
@import './components/button.css';
@import './components/card.css';
@import './components/alert.css';
@import './components/badge.css';
@import './components/switch.css';
@import './components/typeahead.css';
@import './components/pagination.css';
@import './components/table.css';
@import './components/nav.css';

body {
  overflow-y: scroll;
  position: relative;
  min-height: 100vh;
}

.container,
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

#webcore_logo {
  height: 70px;
}

/**
 * Anchors used to have underline styling turned off in CF
 * So they're re-enabled by default, but disabled for CF.
 */
a {
  color: hsl(var(--color-science-blue));
  text-decoration: underline!important;
  background-color: transparent;
}
a:hover {
  color: hsl(var(--color-science-blue-dark));
  text-decoration: underline!important;
}

/* Disable when not laravel */
body:not(.laravel) a {
  text-decoration: none!important;
}
body:not(.laravel) a:hover {
  text-decoration: underline;
}

/**
 * But regardless, we always disable styling for leaflet maps
 */
.leaflet-container a {
  text-decoration: none !important;
}
