header {
	 background-color: #4a4af4;
 padding: 3rem;
 display: flex;
 flex-direction: row;
 align-items: center;
 justify-content: space-between;
}

.logo-container, nav, .empty {
 	width: 12rem;
}
  

.updates-dropdown-container .show-updates-dropdown:after {
  color: #4a4af4;
  font-weight: bold;
  padding: 1rem;
  background-color: white;
  border-radius: 5px;
  white-space: nowrap;
}

.updates-dropdown-container .updates-dropdown {
		  width: auto;
}

@media (max-width: 1000px) {

  header {
    flex-direction: column;
  }
  
  .logo-container {
    margin-bottom: 2rem;
  }
  
  .logo-container, nav, .empty {
 	   width: 6.5rem;
   }

}

@media screen and (max-width: 450px) {
  .updates-dropdown-container {
    position: relative;
  }
  
  .updates-dropdown-container .updates-dropdown {
 	   position: absolute;
 	   top: 100%;    /* Places it just below the button */
 	   left: 0;      /* Aligns with left edge of the button */
 	   z-index: 999; /* Keeps it above other elements */
 	   margin: 0;    /* Reset any weird spacing */
  }
}