body {
  background: #f5f6f8;
  color: #333333;
  margin: 0;
  padding-top: 5em; /* reserve space for the fixed navbar */
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4, h5, h6 {
  color: #444444;
}

ul {
  margin: 0;
}

/* FOOTER */
footer {
  background: #2c064a;
  margin-top: auto;
  color: #ffffff;
}

.bg-steel {
  background: linear-gradient(90deg, #2c064a 0%, #501f7a 100%);
}

.site-header .navbar-nav .nav-link {
  color: #e7e9ef;
  font-weight: 500;
}

.site-header .navbar-nav .nav-link:hover {
  color: #ffffff;
}

.site-header .navbar-nav .nav-link.active {
  font-weight: 500;
}

.main-layout {
  flex: 1 0 auto;
}

.sidebar-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
}

.sidebar-card .nav-link {
  color: #2c064a;
  background-color: rgba(80, 31, 122, 0.08);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.sidebar-card .nav-link:hover {
  background-color: rgba(80, 31, 122, 0.16);
  transform: translateX(4px);
  color: #2c064a;
}

.sidebar-title {
  color: #2c064a;
  font-weight: 600;
}

.sidebar-icon {
  font-size: 1.1rem;
}

.content-section {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(44, 6, 74, 0.05);
}

.article-title {
  color: #2c064a;
}

a.article-title:hover {
  color: #501f7a;
  text-decoration: none;
}

.article-content {
  white-space: pre-line;
}

.article-metadata {
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.article-metadata a:hover {
  color: #2c064a;
  text-decoration: none;
}

.article-img {
  height: 65px;
  width: 65px;
  margin-right: 16px;
  border-radius: 1rem;
}

.article-svg {
  width: 25px;
  height: 25px;
  vertical-align: middle;
}

.account-img {
  height: 125px;
  width: 125px;
  margin-right: 20px;
  margin-bottom: 16px;
  border-radius: 1.5rem;
}

.account-heading {
  font-size: 2.5rem;
}

.text-light-75 {
  color: rgba(255, 255, 255, 0.75);
}

.text-light-50 {
  color: rgba(255, 255, 255, 0.5);
}

.footer-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer {
  color: rgba(255, 255, 255, 0.85);
}

.body-map-view .main-layout {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  min-height: 0;
}

.body-map-view .main-layout > .row {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 auto;
  min-height: 0;
}

.body-map-view .main-layout > .row > section {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.body-map-view .main-layout > .row > section .content-section {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.body-map-view .main-layout > .row > section .content-section .map-wrapper {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  min-height: 0;
}

.body-map-view #map {
  height: 100%;
}

.body-map-view .leaflet-container {
  height: 100%;
}
