/* ---------------------------------------------------------------------------------------------------------------------
These styles are used for the PlaneMaker manual, emulating the style of the PM menubar.
----------------------------------------------------------------------------------------------------------------------*/

/* Navbar container */
.pm_navbar {
  overflow: hidden;
  background-color: #111111;
  font-family: Arial Bold;
  width: 1200px;
  margin-bottom: 0px;
  margin-top: 30px;
}

/* TExt with no pm_dropdown */
.pm_navbar a {
  float: left;
  font-size: 14px;
  color: #989898;
  text-align: center;
  padding: 5px 16px;
  text-decoration: none;
}

/* The pm_dropdown container */
.pm_dropdown {
  float: left;
  overflow: hidden;
}

/* Text that have pm_dropdowns */
.pm_dropdown .dropbtn {
  font-size: 14px; 
  border: none;
  outline: none;
  color: #989898;
  padding: 5px 20px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a medium gray background color to navbar links on hover */
.pm_navbar a:hover, .pm_dropdown:hover .dropbtn {
  background-color: #737370;
}

/* pm_dropdown content (hidden by default) */
.pm_dropdown-content {
  display: none;
  position: absolute;
  background-color: black;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

/* Links inside the pm_dropdown */
.pm_dropdown-content a {
  float: none;
  color: #989898;
  padding: 4px 20px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.pm_dropdown-content pre {
	font-family: Arial Bold;
	padding: 0px;
	margin: 0px;
}

/* Add a grey background color to pm_dropdown links on hover */
.pm_dropdown-content a:hover {
  background-color: #ddd;
}

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