      /*Dropdowm Menu
              
      /* Base styles for the fixed top menu bar */
        .fixed-menu-container {
          height: 60px;
          position: fixed;
          top: 0;
          left: 0;
          width: 100%;
          padding: 10px;
          background-color: #333;
          z-index: 1000;
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          display: flex;
          align-items: center;
          justify-content: space-between;
          box-sizing: border-box;
        }
      
        /* Styling for the icon link - very strict constraints */
        .fixed-menu-container > a {
          display: inline-block !important;
          height: 35px !important;
          width: 35px !important;
          max-height: 35px !important;
          max-width: 35px !important;
          min-height: 35px !important;
          min-width: 35px !important;
          padding: 0 !important;
          margin: 0 !important;
          text-decoration: none !important;
          flex-shrink: 0 !important;
          overflow: hidden !important;
          box-sizing: border-box !important;
          line-height: 0 !important;
          vertical-align: middle !important;
        }
        
        /* Styling for the icon on the left - force small size */
        .fixed-menu-container > a > img.menu-icon,
        .fixed-menu-container a img.menu-icon,
        img.menu-icon {
          height: 35px !important;
          width: 35px !important;
          max-height: 35px !important;
          max-width: 35px !important;
          min-height: 35px !important;
          min-width: 35px !important;
          object-fit: contain !important;
          display: block !important;
          margin: 0 auto !important;
          padding: 0 !important;
          box-sizing: border-box !important;
        }
        
        /* Container for the dropdowns on the right */
        .dropdowns-wrapper {
          display: flex;
          gap: 10px;
        }
      
        /* Styling for the dropdowns themselves */
        .dropdown-select {
          font-family: Arial, sans-serif;
          background-color: #555;
          color: white;
          padding: 10px 12px;
          font-size: 16px;
          border: none;
          cursor: pointer;
          border-radius: 5px;
        }
        
        .dropdown-select:focus {
          outline: none;
        }
      
        /* Padding for the body so content isn't hidden behind the fixed menu */
        body {
          padding-top: 80px;
        }
