// defines the width of the content
.container {
    width: 100%;
    max-width: 850px;
  	  display:flex;
}


.component-container {
  flex-basis: 50%;
}

.component-container:nth-child(even) {
  border-left: 0 !important;
}

.component-container:nth-child(2) {
  border-top: 1px solid #E0E0E0 !important;
}

.updates-dropdown-container { 
   
 	 left: 80%;
  font-size: x-small;
  color:white;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #003869;
  background-color: #003869;
  border: black;
  border-radius: 15px;
  box-shadow: 0 9px #ddd;
}

/* Add a background color to the top navigation */
.topnav {
  background-color: #003869;
  overflow: hidden;
  width: 100%
}

/* Style the links inside the navigation bar */
.topnav a {
  float: left;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.topnav a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.topnav a.active {
  background-color: #04AA6D;
  color: white;

}