#support-box.support-collapsed .support-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: scaleY(0.95);
  transition: all 0.4s ease-in-out;
}

#support-box.support-expanded .support-content {
  max-height: 1000px; /* groß genug für alles */
  opacity: 1;
  transform: scaleY(1);
  transition: all 0.4s ease-in-out;
}

.support-word {
  display: inline-block;
  opacity: 1;
  max-width: 180px;
  margin-left: 6px;
  transition:
    opacity 0.8s ease-out,
    max-width 0.8s ease-out,
    margin-left 0.8s ease-out;
  white-space: nowrap;
  overflow: hidden;
}

#support-box.support-collapsed .support-word {
  transition:
    opacity 0s ease-in,
    max-width 0s ease-in,
    margin-left 0s ease-in;
  opacity: 0;
  max-width: 0;
  margin-left: 0;
}



#support-box.support-collapsed {
	z-index:10000;
  max-width: 35px;
  height: 48px;
  max-height: 120px;
  padding: 8px;
  transition: all 0.3s ease-in-out;
}

#support-box.support-expanded {
  max-width: 280px;
  padding: 20px;
  transition: all 0.3s ease-in-out;
}

#support-box {
  cursor: pointer;
  position: fixed;
  top: 180px;
  right: 0;
  transform: translateY(-50%);
  z-index: 9999;
  background: #fff;
  border-radius: 5px 0 0 5px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  padding: 20px;
  width: 280px;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0.95;
  transition: all 0.3s ease;
}

#support-box .support-title {
  font-size: 24px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  transition: all 0.3s ease-in-out;
  min-height: 32px; /* sorgt für stabilen Platz */

}

#support-box .support-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  margin-top: 15px;
}

#support-box .support-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

#support-box .support-content p {
  margin: 4px 0;
  font-size: 14px;
  line-height: 1.4;
}

#support-box .support-content a {
  color: #007cba;
  text-decoration: none;
}

#support-box .support-content a:hover {
  text-decoration: underline;
}

 #support-box .support-icon {
	  color: #ff00ff;
	  font-size: 24px;
	  line-height: 1;
  }
/* Mobile Version */
@media (max-width: 600px) {

  .support-word {
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  #support-box.expanded .support-word {
    display: inline;
    opacity: 1;
  }


  #support-box .support-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
  }

  #support-box.expanded {
    max-width: 280px;
    height: auto;
    padding: 16px;
    border-radius: 10px;
    background: #fff;
    color: inherit;
  }

  #support-box.expanded .support-content {
    max-height: 1000px;
    opacity: 1;
    transition: all 0.4s ease;
  }

  #support-box .support-icon {
	  color: #ff00ff;
	  font-size: 24px;
	  line-height: 1;
  }
}
