  /* Floating Banner */
  #pwa-popup {
        position: fixed;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        background-color: #212121;
        color: #fff;
        padding: 15px;
        text-align: center;
        z-index: 1000;
        font-family: Arial, sans-serif;
        font-size: 14px;
        display: none;
        flex-direction: column;
        align-items: center;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        width: 400px;
    }

    #pwa-popup img {
        width: 120px;
        margin-bottom: 10px;
    }

    #pwa-popup span {
        margin-bottom: 10px;
        font-size: 14px;
    }

    #pwa-popup .pwa-buttons {
        display: flex;
        gap: 10px;
        width: 100%;
        justify-content: center;
    }

    #pwa-popup button {
        background-color: var(--main);
        color: #fff;
        border: none;
        padding: 8px 15px;
        border-radius: 6px;
        font-size: 13px;
        cursor: pointer;
        font-weight: bold;
    }

    #pwa-popup button:hover {
        opacity: 0.8;
    }
      

    /*Install Button */
    #install-button {
        display: none;
        position: inline-block;
        bottom: 20px;
        right: 20px;
        background: #fd7f20;
        color: #333333;
        border:2px solid #555555;
        padding: 12px 15px;
        border-radius: 8px;
        cursor: pointer;
        font-weight: bold;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    }

    #install-button:hover {
        background: #ffb380;
    }