.pwa-subscribe-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
    /* Ensure it is on top */
    padding: 12px 24px;
    background-color: #0073aa;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
    display: none;
    /* JS will toggle if needed, or inline style forces it */
}

.pwa-subscribe-btn:hover {
    background-color: #005177;
}

.pwa-subscribe-btn:disabled {
    background-color: #ccc;
    cursor: default;
}

.pwa-dismiss-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ff0000;
    color: white;
    border: 2px solid white;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: none;
    /* JS toggles this */
}

/* Container to handle relative positioning of the X */
.pwa-btn-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999999;
}

/* Adjust floating button to be relative to container, not fixed window */
.pwa-subscribe-btn.pwa-floating-btn {
    position: static;
    /* Static because the container is fixed */
    display: block;
}