/* Bandeau d'installation PWA — client et employé */
.client-install-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 9999;
    max-width: 760px;
    margin: 0 auto;
    background: #0f172a;
    color: #fff;
    border-radius: 18px;
    padding: 1rem;
    box-shadow: 0 16px 42px rgba(15, 23, 42, 0.28);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.client-install-copy {
    display: grid;
    gap: 0.25rem;
}

.client-install-copy strong {
    font-size: 1rem;
}

.client-install-copy span {
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.92rem;
    line-height: 1.45;
}

.client-install-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    flex-shrink: 0;
}

.client-install-actions button {
    margin: 0;
    border: none;
    border-radius: 999px;
    padding: 10px 14px;
    background: #1f4f8c;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    white-space: nowrap;
}

.client-install-actions button.secondary {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

@media (max-width: 640px) {
    .client-install-banner {
        left: 0.75rem;
        right: 0.75rem;
        padding: 0.9rem;
        align-items: stretch;
        flex-direction: column;
    }

    .client-install-actions {
        width: 100%;
    }

    .client-install-actions button {
        flex: 1 1 auto;
    }
}
