/* Add here all your css styles (customizations) */

/* Text Selection Color - Changed from green (#07A241) to dark blue (#0d2361) */
::-moz-selection {
  color: #fff;
  background-color: #0d2361;
}

::selection {
  color: #fff;
  background-color: #0d2361;
}

.g-bg-primary ::-moz-selection {
  color: #0d2361;
  background-color: #fff;
}

.g-bg-primary ::selection {
  color: #0d2361;
  background-color: #fff;
}

/* Footer links hover color - dark maroon */
footer a {
  color: #6b4c4c;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #800000 !important;
}

/* Center header social icons on mobile */
@media (max-width: 767.98px) {
  .header-social-links {
    text-align: center;
    margin-top: 15px;
  }

  .header-social-links .list-inline-item {
    float: none;
    display: inline-block;
  }
}