html{
  scroll-behavior: smooth;
}

a:link {
    color: #000;
    background-color: transparent;
    text-decoration: none;
  }

  a:visited {
    color: #000;
    background-color: transparent;
    text-decoration: none;
  }

  a:hover {
    color: #000;
    background-color: transparent;
    text-decoration: underline;
  }

  a:active {
    color: #000;
    background-color: transparent;
    text-decoration: underline;
  }

  .menu_bar {
    width: 100%;
    position: sticky;
    top: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #ccc;
    z-index: 3; /* Ensure it's behind the suggestions */
    
  }

  body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
  }



  table {
    width: 100%;
    table-layout: fixed; /* Ensure equal width for each column */
  }

  .menu_cells {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  form{
    margin-top: 10px;
    margin-bottom: 10px;
  }


  @media (max-width: 415px) {
    .menu_cells:nth-child(3){
      width: 127px;
    }
  }


  .spatiere{
    user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}