.navbar-inverse .navbar-nav > li > a {
    color: #e1e4bf;
	
}
.navbar-inverse {
    background-color: #2E6F40;}
.navbar-brand {
    color: #e1e4bf;
	 font-size: larger;
}

.navbar-brand>img {
   max-height: 100% !important;
   height: 100% !important;
   width: auto !important;
   margin: 0 auto!important;


   /* probably not needed anymore, but doesn't hurt */
   -o-object-fit: contain !important;
   object-fit: contain !important; 
   


}
.a {
  color: #07bf2f;
  font-weight: bold;
}


  .navbar-nav {
   vertical-align: bottom;
    font-size: larger;
  }
  .navbar-nav > li {
    vertical-align: bottom;
	 font-size: larger;
  }
  .navbar-nav > li > a {
      line-height: 120px;
  vertical-align: bottom;
   font-size: larger;
  }
  
 /* filepath: styles.css */


#dropdown-heading, #dropdown-heading-1, #dropdown-heading-2, #dropdown-heading-3, #dropdown-heading-4{
    cursor: pointer;
    color: white;
    padding: 10px;
    border-radius: 5px;
    text-align: left;
    transition: background-color 0.3s ease;
}
#dropdown-heading:hover, #dropdown-heading-1:hover, #dropdown-heading-2:hover, #dropdown-heading-3:hover, #dropdown-heading-4:hover {
    background-color: #0056b3;

#dropdown-content, #dropdown-content-1, #dropdown-content-2, #dropdown-content-3 , #dropdown-content-4 {
    border: 1px solid #ccc;
    padding: 10px;
    margin-top: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: max-height 0.3s ease, opacity 0.3s ease;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    color: white !important; /* Updated text color */
} 
#dropdown-content.show, dropdown-content-1.show, #dropdown-content-2.show, #dropdown-content-3.show {
    max-height: 300px; /* Adjust based on content height */
    opacity: 1;
}