#pwa-smart-install-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    border-radius: 10px;
    padding: 14px 18px;
    z-index: 99999999;
    direction: rtl;
    text-align: right;
    font-family: Tahoma, Arial, sans-serif;
    border: 1px solid #e5e7eb;
}
.pwa-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.pwa-banner-info strong {
    display: block;
    font-size: 14px;
    color: #111827;
    margin-bottom: 3px;
}
.pwa-banner-info p {
    margin: 0;
    font-size: 12px;
    color: #4b5563;
    line-height: 1.5;
}
.pwa-banner-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pwa-action-btn {
    background: #0073aa;
    color: #ffffff;
    border: none;
    padding: 7px 14px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: bold;
    font-size: 12px;
    white-space: nowrap;
}
.pwa-close-btn {
    background: #f3f4f6;
    color: #9ca3af;
    border: none;
    padding: 6px 10px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 12px;
}