/* Banner */

.install-banner {
    display: none;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 14px;
    position: fixed;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    width: 90%;
    max-width: 300px;
    z-index: 1000;
    text-align: center;
}

.install-banner p {
    margin: 0;
    text-align: center;
}

.install-banner .dismiss-button,
.install-banner .install-button {
    display: inline-block;
    margin-top: 10px;
    color: #353535;
    font-size: 16px;
    cursor: pointer;
    border: none;
    background: none;
}

@media screen and (max-height: 400px) {
    .install-banner {
        bottom: 5%;
    }
}

/* Banner iOS */

.install-banner-ios {
    display: none;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px;
    border-radius: 14px;
    position: fixed;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%) translateY(50%);
    width: 90%;
    max-width: 400px;
    z-index: 1000;
    text-align: center;
}

/* Für WebKit-basierte Browser (z.B. Safari) */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    #installBanneriOS, #installBanner {
      -webkit-backdrop-filter: blur(15px);
      backdrop-filter: blur(15px);
    }
  }

.install-banner-ios p {
    padding-top: 20px;
    margin: 10px;
    text-align: center;
}

.install-banner-ios .close-button-ios {
    position: absolute;
    top: 5px;
    right: 0;
    margin: 0px;
    line-height: 1em;
    color: #5a5a5a;
    .font-size: 28px;
    cursor: pointer;
    border: none;
    background: none;
}
