/* (c) Axel Naumann, CERN; 2020-03-02 */
/* Adapted from https://www.w3schools.com/howto/howto_css_dropdown.asp */
#top, #titlearea, #projectname, #projectalign, #projectrow {
    overflow: visible !important;
}

.dropbtn {
  margin-left: 30px;
  border: 1px solid lightgray;
  color: white;
  background-color: #346295;
  padding: 6px 16px 6px 16px;
  font-size: 14px;
  min-width: 150px;
}
.dropbtn:after{
    content: '';
    border: 4px solid transparent;
    border-top: 4px solid white;
    margin-left: 12px;
    margin-bottom: 3px;
    display: inline-block;
    vertical-align: bottom;
}

.dropdown {
  position: relative;
  display: inline-block;
  z-index: 10000 !important;
}

.dropdown-content {
  display: none;
  position: absolute;
  margin-left: 30px;
  background-color: #f1f1f1;
  min-width: 150px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 10000 !important; /* added */
}

.dropdown-content a {
  color: black;
  padding: 4px 16px;
  text-decoration: none;
  display: block;
}

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

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

.dropdown:hover .dropbtn {
   color: black;
   background-color:  #3690d4;
}

.home-arrow {
    display: inline-block;
    text-decoration: none;
    line-height: 1;
}

.home-arrow svg {
    stroke: #346295; 
    fill: none;
    vertical-align: middle;
    transform: scale(1);
    transition: stroke 0.2s ease, transform 0.2s ease;
}

.home-arrow:hover svg {
    stroke: #26466b; 
    text-decoration: none;
    transform: scale(1.15); 
}