/* Dropdown Button */
.dropbtn {
    background-color: #04AA6D;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
  }

  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }

  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }

  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }

  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ddd;}

  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}

  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: #3e8e41;}

  .submenu {
    background-color: #f1f1f1;
    padding: 4px; /* Adjust the padding value as needed */
    display: none;
    animation: fade-in 0.3s ease-in-out;
    border-radius: 2px; /* Add rounded corners to the submenu */
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1); /* Add a subtle box shadow */
    margin-bottom: 10px;
    margin-top: -10px;
  }

  .submenu h3 {
    margin: 0;
  }

  .submenu a {
    display: block;
    padding: 8px 12px; /* Adjust the padding value as needed */
    text-decoration: none;
    color: #333; /* Adjust the text color as needed */
    transition: background-color 0.2s ease-in-out;
  }

  .submenu a:hover {
    background-color: #ddd; /* Change background color on hover */
  }



  @keyframes fade-in {
    0% {
      opacity: 0;
      transform: translateY(-10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
