/* PWA install button + modal (per-business, copied into each customer site) */

.install-app-btn {
    display: none;
    align-items: center;
    gap: 6px;
    background: #0f172a;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    margin-left: 8px;
    white-space: nowrap;
}
.install-app-btn:hover { opacity: 0.85; }

.install-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.install-modal {
    background: #ffffff;
    color: #1e293b;
    border-radius: 14px;
    padding: 22px;
    max-width: 340px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.install-modal h3 { margin: 0 0 8px; }
.install-modal p { margin: 0 0 16px; line-height: 1.5; }

/* Never show the install button inside the installed app */
@media (display-mode: standalone) {
    .install-app-btn { display: none !important; }
}
