  /* .feedback-button {
    
    margin-left: 0;
    margin-right: 0;
  } */


  /* New style for the feedback button */
  .feedback-button {
    background-color: #2D6986;
    color: #fff;

    font-weight: 500;
    font-size: 1.25rem;
    border-radius: 8px;
    width: 330px;
    border: solid 1px #2D6986;
    /* Border matching background */
    padding: 1.5rem 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
    /* Use flex for button-like behavior, consistent with .btn */
    justify-content: center;
    align-items: center;
    text-decoration: none;
    /* Remove underline */
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    /* Smooth transitions for hover */
  }


  .submitbox-button {
    background-color: #2D6986;
    color: #fff;
    font-weight: 500;
    font-size: 1.25rem;
    border-radius: 8px;
    width: 330px;

    padding: 1.5rem 1.5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;

    display: flex;

    justify-content: center;
    align-items: center;
    text-decoration: none;

    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;

  }

  .submitbox-button:hover {
    color: #fff;
    border-color: #981212;

  }


  .submitbox-button-header {
    background-color: #2D6986;
    color: #fff;

    font-weight: 500;
    font-size: 1.25rem;
    border-radius: 8px;
    width: 330px;
    z-index: 99;
    padding: 1.5rem 1.5rem;
    position: absolute;
    top: 50px;
    right: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  }

  .submitbox-button-header a:hover {
    text-decoration: underline;
    color: #fff;
  }

  .submitbox-button-header:hover {
    text-decoration: underline;
    color: #fff;

  }

  @media (max-width: 1050px) {
    #submitbox-button-header-erreichbarkeit {
      background-color: #2D6986;
      color: #fff;

      font-weight: 500;
      font-size: 1.25rem;
      border-radius: 8px;
      width: 330px;
      z-index: 99;
      padding: 1.5rem 1.5rem;
      position: absolute;
      top: 140px;
      left: 0px;
      /* top: 50px; */
      /* right: 50px; */
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
      cursor: pointer;
      transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }
  }



  /* .feedback-button:hover {
  
  color: #2D6986; 
  border-color: #06402A; 
} */