/* General Dark Background */
body {
    background-color: #e3d7c6;
    color: #333333;
  }
  
  /* Navbar Styling */
  .navbar {
    background-color: #343a40 !important;
  }
  .navbar-light .navbar-brand {
    color: #ffffff !important;
  }
  .navbar-light .navbar-nav .nav-link {
    color: #ffffff !important;
  }
  .navbar-light .navbar-nav .nav-link.active {
    color: #f0f0f0 !important;
    font-weight: bold;
  }
  .navbar-toggler {
    background-color: #f0f0f0 !important;
  }
  .navbar-toggler-icon {
    background-color: transparent !important;
  }

  .text-info {
    color: #f0f0f0 !important;
  }
  
  /* Navbar Dropdown Styling added 14.11.*/
  .dropdown-menu {
    background-color: #D3D0CB;
  } 
  .dropdown-item {
    color: #333333;
  }
  .dropdown-item:hover {
    background-color: #007bff;
    color: #ffffff;
  }
/*********************************************/

  /* Footer Styling */
  .footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #587b7f;
    color: #e0e0e0;
    padding: 0.3rem 0;
    text-align: center;
    transition: transform 0.3s ease;
    transform: translateY(100%);  /*initially hidden */
  }
  .footer.visible {
    transform: translateY(0); /* visible when scrolled to bottom */
  }
  .footer .nav-link {
    color: #e0e0e0;
  }
  .footer .nav-link:hover {
    color: #007bff;
  }
  
  /* Additional Styles for Cards */
  .card {
    background-color: #587b7f00;
    color: #e0e0e0;
  }
  .card-body {
    background-color: #587b7faf;
  }
  
  /* Links Styling */
  a {
    color: #0056b3;
  }
  a:hover {
    color: #003d7e;
    text-decoration: underline;
  }
  
  /* Headings */
  h1 {
    color: #244142;
    margin-bottom: 1rem;
  }
  