
/* Navigation Bar Container */
.navbar {
  background-color: #465a6c;
  height: 39px;
  overflow: visible; /* Ensure dropdown is not clipped */
  position: relative;
  z-index: 10; /* Keep on top */
}

/* Container for dropdown buttons */
.navbar-type {
  font-family: Helvetica, sans-serif;
  display: flex;
  justify-content: flex-start; /* Options: space-around, space-between */
  align-items: center;
  width: 1200px;
  margin: 0 auto;
}

/* Main dropdown button */
.dropbtn {
  background-color: #465a6c;
  color: white;
  padding: 10px 23px;
  font-size: 14px;
  height: 39px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  position: relative;
}

.dropbtn a {
  text-decoration: none;
  color: white;
}

.dropbtn:hover {
  background-color: #5580b0;
}

/* Triangle icon inside button */
.dropdown-icon {
  margin-left: 10px;
  color: lightsteelblue;
  display: inline-block;
  transform: scale(0.85);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
  transform: scale(0.85) rotate(180deg);
}

/* Dropdown menu */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: FloralWhite;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  /*padding: 10px 0;*/
  font-weight: normal;
  top: 100%;
  left: 0;
}

/* Dropdown links */
.dropdown-content a {
  display: block;
  text-align: left;
  color: black;
  text-decoration: none;
  padding: 20px 10px;
  font-size: 13px;
  border-bottom: 1px solid #ddd;
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background: IndianRed;
  color: #ffffff;
}

/* Reveal dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
  transition: all 0.3s ease;
}

/* Container for each dropdown */
.dropdown {
  position: relative;
}

/* Ensure dropdowns appear above main content
.main-content,
aside {
  position: relative;
  z-index: 1;
}*/

/* Optional alternate dropdown button for matrix-style content */
.dropdown .dropbtn-matrix {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  padding: 6px 22px 0px 22px;
  color: #294162;
 /* border: none;
  outline: none;*/
  /*color: black;*/
  /*background: white;*/
  text-decoration: none;
  /*width: 295px;*/
}

.dropbtn-matrix:hover {
  background-color: #f6f6f6;
  color: #056a05;
}

#products {
width: 200px;
}

#quote {
width: 141px;
	background-color: steelblue;
}

#quote:hover {
  background-color: green;
}

#matrix {
    width: 295px;
    background: none;
    color: black;
    background-color: white;
    line-height: .6;
    }

#matrix  a:hover {
        background-color: #f6f6f6;
        color: #056a05;
    }

/*.dropdown .dropbtn-matrix  a {
        color: #294162;
        font-size: 11pt;
        font-weight: bold;
        }   */

.navbar a:hover, .dropdown:hover .dropbtn {
   background: SteelBlue;
}

.navbar-purple a:hover, .dropdown:hover .dropbtn-purple {
   background: MediumPurple;
}