body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(to right top, rgb(255, 120, 235), rgb(48, 207, 255));
  }
  
  .menu, .cart {
    width: 80%;
    margin: 10% auto;
    margin-top: 3.3%;
    padding: 20px;
    background: linear-gradient(to left top, rgba(255,255,255, 0.7), rgba(255,255,255,0.3));
    box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.733);
    backdrop-filter: blur( 8px );
    -webkit-backdrop-filter: blur( 8px );
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(2rem);
    line-height: 2;
  }
  
  h1, h2 {
    text-align: center;
    color: #0075fa;
    opacity: 0.8;
  }
  
  .menu-item {
    margin-bottom: 30px;
  }
  
  h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  li {
    margin-bottom: 5px;
    color: #ff00c8;
    opacity: 0.8;
  }
  
  .menu-item ul {
    display: flex;
    flex-direction: column;
    padding: 0;
  }
  
  .menu-item li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
  }
  
  .item-name {
    flex: 1;
  }
  
  .item-price {
    margin-left: auto;
    margin-right: 32.5%; /* Adjust as needed */
  }

  @media  screen and (min-width: 650px) {
    .item-price {
      margin-left: auto;
      margin-right: 40%; /* Adjust as needed */
    }
  }
  
  .add-to-cart {
    margin-left: 10px;
  }  

  .add-to-cart:hover {
    background: linear-gradient(to right top, rgb(255, 120, 235), rgb(48, 207, 255));
  }
  
  #form {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    color: #ff00c8;
    opacity: 0.8;
  }
  
  .field {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
  }
  
  input[type="text"] {
    width: calc(100% - 10px);
    padding: 5px;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
  }
  
  textarea {
    width: calc(100% - 10px);
    padding: 5px;
    border: 1px solid #d6d6d6;
    border-radius: 5px;
  }
  
  input[type="submit"] {
    width: 100%;
    padding: 10px;
    background: linear-gradient(to left top, rgb(255, 120, 235), rgb(48, 207, 255));
    color: #fff;
    font-weight: bolder;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  input[type="submit"]:hover {
    background: linear-gradient(to right top, rgb(255, 120, 235), rgb(48, 207, 255));
  }
  
  #cart-items {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
  }
  
  #cart-items li {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
  }
  
  #total-price {
    font-weight: bold;
    margin-bottom: 10px;
    color: #0075fa;
    opacity: 0.8;
  }
  
  #order-button {
    width: 100%;
    padding: 10px;
    background: linear-gradient(to left top, rgb(255, 120, 235), rgb(48, 207, 255));
    color: #fff;
    font-weight: bolder;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  #order-button:hover {
    background: linear-gradient(to right top, rgb(255, 120, 235), rgb(48, 207, 255));
  }
  
  .cart-item-name {
    float: left;
    width: 70%;
  }

  .remove-one,
  .quantity,
  .add-one {
      float: right;
      padding-left: 5px;
  }
  
  button {
    background: linear-gradient(to left top, rgb(255, 120, 235), rgb(48, 207, 255));
    border:  none;
    border-radius: 1rem;
    cursor: pointer;
  }

  .remove-one .add-one {
    padding-left: 5px;
    padding-right: 5px;
  }

  .popup-form {
    align-items: center;
    top: 15%;
    left: 10%;
    width: 80%;
    position: absolute;
    background: linear-gradient(to left top, rgba(255,255,255, 0.7), rgba(255,255,255,0.3));
    box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.733);
    backdrop-filter: blur( 8px );
    -webkit-backdrop-filter: blur( 8px );
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(2rem);
  }
  
  #close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px;
    background: linear-gradient(to left top, rgb(255, 120, 235), rgb(48, 207, 255));
    color: #fff;
    font-weight: bolder;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: linear-gradient(to left top, rgba(255,255,255, 0.7), rgba(255,255,255,0.3));
    box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.733);
    backdrop-filter: blur( 8px );
    -webkit-backdrop-filter: blur( 8px );
    border-radius: 0 0 20px 20px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(2rem);
  }
  
  .logo img {
    width: 15%;
    height: auto;
  }
  
  .cart-icon img {
    height: 200%;
    width: auto;
    margin-right: 20%;
  }

  #cart-banner {
    position: fixed;
    bottom: 30px; /* etwas über dem unteren Bildschirmrand */
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 80%;
    background: linear-gradient(to left top, rgba(255,255,255, 0.7), rgba(255,255,255,0.3));
    box-shadow: 0 8px 32px 0 rgba(255, 255, 255, 0.733);
    backdrop-filter: blur( 8px );
    -webkit-backdrop-filter: blur( 8px );
    border-radius: 20px 20px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(2rem);
    color: #ff00c8;
    opacity: 0.8;
    z-index: 1000;
    padding: 10px;
    text-align: center;
    border-radius: 10px; /* abgerundete Ecken */
    display: none;
  }

  .popup-form {
    display: none;
  }

  @media screen and (max-width: 400px) {
    h1 {
      font-size: 24px;
    }
    h2 {
      font-size: 20px;
    }
    li {
      font-size: 12px;
    }
  }