body {
      font-family: Arial, sans-serif;
      margin: 0;
      padding: 0;
      background-color: #ffffff;
      color: #000000;
    }

    nav {
      background-color: #ffffff;
      border-bottom: 0px solid #cccccc;
      box-shadow: 0 0px 0px rgba(0, 0, 0, 0.2);
    }

    .menu {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      background-color: #ffffff;
      gap: 0;
      flex-wrap: nowrap;
		font:bold 18px Arial,Helvetica,sans-serif;
    }

    .menu > li {
      position: relative;
    }

    .menu > li > a {
      display: block;
      width: 160px;
      height: 22px;
      line-height: 22px;
      padding: 10px;
      color: #000000;
      text-align: center;
      text-decoration: none;
      background-color: #ffffff;
      border: 0.5px solid #777777;
      border-radius: 4px;
      box-shadow: inset 0 0 0 1px #dddddd;
      transition: color 0.3s, box-shadow 0.3s;
    }

    .menu > li > a:hover {
      background-color: #ffffff;
      color: #3EBA3E;
      box-shadow: inset 0 0 0 2px #ffffff;
    }
.menu > li:first-child > a {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
	border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.menu > li:last-child > a {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
	 border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.menu > li:not(:first-child):not(:last-child) > a {
  border-radius: 0;
}

    .submenu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background-color: #ffffff;
      padding: 0;
      margin: 0;
      list-style: none;
      min-width: 180px;
      border-radius: 4px;
      border: 1px solid #999999;
      z-index: 1000;
		font:bold 14px Arial, Helvetica, sans-serif;
    }

    .submenu li a {
      display: block;
      padding: 10px 16px;
      color: #000000;
      text-decoration: none;
      background-color: #ffffff;
      border-bottom: 1px solid #dddddd;
      transition: color 0.3s;
    }

    .submenu li:last-child a {
      border-bottom: none;
    }

    .submenu li a:hover {
      background-color: #ffffff;
      color: #3EBA3E;
    }

    .menu > li:hover .submenu {
      display: block;
    }
.submenu li:last-child a {
  border-bottom: none; /* Keine untere Grenze für das letzte Element */
  border-radius: 0 0 10px 10px; /* Rundung nur für das unterste Element */
}

    @media (max-width: 768px) {
      .menu {
        flex-direction: column;
        align-items: center;
      }

      .menu > li {
        width: 100%;
      }

      .menu > li > a {
        width: 100%;
      }
    }