
    .navo {
        text-align: center;
        float: right;
        width: 100%;
      }
  
      .linki  {
        color: lightgrey;
        text-decoration: none;
      }
  
      .navo ul {
        list-style: none;
        margin: 1.35em 0;
        padding: 0;
      }
  
      .navo ul li {
        padding: 0;
        display: inline-block;
      }
  
      .navo ul li a {
        display: inline-block;
      }
  
      .navo ul li a:hover {
        color: inherit;
        text-decoration: none;
      }
  
      .navo ul li a i {
        color: teal;
        font-size: 1.1em;
      }
  
      .dropdown {
        position: relative;
        display: inline-block;
      }
  
      .dropdown ul {
        display: none;
        position: absolute;
        background-color: white;
        border-radius: 3px;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
        font-size: 1.1em;
        padding: 0.25em 0;
        text-align: left;
        right: -6px;
        z-index: 10;
      }
  
      .dropdown ul:after {
        content: "";
        position: absolute;
        top: -6px;
        right: 10px;
        border-bottom: 6px solid white;
        border-left: 6px solid transparent;
        border-right: 6px solid transparent;
      }
  
      .dropdown li {
        display: block;
        clear: both;
        margin: 0.25em;
        overflow: hidden;
      }
  
      .dropdown li:first-child a {
        margin-top: 0;
      }
  
      .dropdown a{
        border-radius: 3px;
        color: #2a2e36;
        display: block;
        margin-top: 0.25em;
        padding: 0.6em 1em;
        white-space: nowrap;
      }
  
    
  
      .dropdown a i {
        margin-right: 1em;
      }
  
      .dropdown .divider {
        border-top: 1px solid #eaedf0;
        margin-top: 0.25em;
      }
  
      .dropdown.show ul {
        display: block;
      }
      .grayeffect :hover{
        background-color: #eff2f3;
        color: #2a2e36;
      }