/*
Need to refactor this to use SCSS and variables
*/

.no-hover:hover ,
.no-hover:active,
.no-hover:focus
{
  color: var(--bs-primary)!important; /* Maintain primary color */
  background-color: transparent !important; /* Ensure background is transparent */
  border-color: var(--bs-primary) !important; /* Ensure border color is maintained */
  color: var(--bs-primary) !important;      /* Ensure text color is maintained */ 
}

/* Sticky footer styles */
html {
  position: relative;
  min-height: 100%;
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

body {
  margin-bottom: 60px;
  /* Margin bottom by footer height */
  background-color: #F5F5F5;
  /* Neutral background */
  color: #002738;
  /* Primary text color */
}

.container {
  max-width: 960px;
  padding-top: 20px;
}

/* Footer */
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background-color: #00354D;
  /* Darker analogous color */
  color: #FFF4E5;
  /* Light text for contrast */
}
/****************************************************/
/* Navbar CSS */
.navbar-custom {
  background-color: #e0e6e7;
  /* Primary color */
  transition: background-color 0.3s ease;
}

.navbar-custom .navbar-brand img {
  height: 50px;
  padding-left: 30px;
}

.navbar-custom .nav-link {
  color: #5b6268;
  padding: 10px 15px;
  transition: color 0.3s ease, background-color 0.3s ease;
}

.navbar-custom .nav-link:hover {
  color: #333333; /* Darker text on hover */
  background-color: #ffffff; /* White background on hover */
  border-radius: 5px;
}

.navbar-custom .dropdown-menu {
  background-color: #5b6268; /* Dark gray dropdown background */
  transition: background-color 0.3s ease;
  border-radius: 5px;
}

.navbar-custom .dropdown-item {
  background-color: #5b6268; /* Dark gray dropdown item background */
  color: #fff4e5; /* Light text color for contrast */
  transition: background-color 0.3s ease;
}
.navbar-custom .dropdown-item:hover {
  background-color: #ffffff; /* White background on hover */
  color: #333333; /* Darker text on hover */
}

.navbar-toggler {
  border-color: #5b6268;
}

/* Buttons */

.btn:hover {
  filter: brightness(85%); /* darken on hover */
}




.sidebar-custom {
  background-color: #002738;
  /* Primary color */
  transition: background-color 0.3s ease;
}
