/* pwa - F.E.G.l.P. e.V.*/

.install-banner {
  position: fixed;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%) translateY(-100%);
  width: 90%;
  max-width: 400px;
  background: #424242;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.3s ease;
  transition-duration: 0.5s;
  text-align: center;
}

.install-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.banner-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.install-text {
  margin: 0;
  font-size: 1.9rem;
}

.button-row {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.install-banner button {
  border: none;
  border-radius: 20px;
  padding: 8px 14px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.8rem;
}

#installBtn { background: #007aff; color: white; }
#closeBtn { background: #ccc; color: black; }

/* Runder Trigger-Button unten links */
.install-trigger {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: #007bffa2;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  filter: blur(7px); /* Start: unscharf */
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  animation: appear 1.2s ease forwards; /* Animation startet automatisch */
  transition-duration: 0.5s;
}

@keyframes appear {
  to {
    filter: blur(0); /* Ende: klar sichtbar */
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
  }
}