.pwa-banner {
    position: fixed;
    bottom: 10px;
    left: 10px;
    padding: 10px 20px;
    background: #000;
    color: #fff;
    border-radius: 5px;
    z-index: 9999;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: fadeIn 0.5s ease-in-out;
}

.pwa-banner-home {
    position: fixed;
    text-align: center;
    bottom: 20px;
    left: 20px;
    padding: 20px;
    background: #c5a96a;
    color: #fff;
    border-radius: 100px;
    z-index: 9999;
    font-size: 20px;
    cursor: pointer;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}