/* Navigation Area */
div.navContainer {
  display: flex;
  width: 100%;
  background-color: transparent;

  .nav-title {
    font-size: 1.5rem;
    color: #0D0A0B;
    padding-left: 1rem;
  }

  nav {
    display: flex;
    margin-left: auto; 
    margin-right: auto; 
    /* REMOVED: overflow: hidden (This clips dropdown menus!) */
  }

  nav ul {
    display: flex;
    align-items: center;   
    list-style: none;
    margin: 0;
    padding: .5rem 1rem;
  }

  nav li {
    margin-left: 1rem;
  }

  nav a {
    color: black;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.75rem;
    cursor: pointer;
    transition: color 0.2s ease;
  }

  a:hover {
    color: #0F213B;
  }

  /* Dropdown Wrapper */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown .dropbtn {
  display: inline-flex;       /* Keeps text and arrow aligned on one row */
  align-items: center;        /* Centers arrow vertically relative to text */
  gap: 0.35rem;               /* Controls space between text and arrow */
  color: black;
  border: none;
  outline: none;
  padding: 0.5rem 1rem;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.75rem;
  cursor: pointer;
  transition: color 0.2s ease;

  /* Style for the arrow PNG icon */
  .arrow-icon {
    width: 0.85rem;           /* Adjust size of the arrow */
    height: auto;
    display: block;
  }
}

  /* Dropdown Content Box */
  .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;                  /* Positions the box directly BELOW the parent element */
    left: 0;                    /* Aligns with the left edge of parent element */
    background-color: #f9f9f9;
    min-width: 180px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 10;
  }

  .dropdown-content a {
    color: black;
    padding: 0.65rem 1rem;
    text-decoration: none;
    display: block;
    text-align: left;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.75rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
  }

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

  .dropdown:hover .dropdown-content {
    display: block;
  }
}