/* PWA Icon Styling - White Background */
.pwa-icon {
    background: white !important;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pwa-logo {
    background: white !important;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Install prompt icon */
.pwa-install-header .pwa-logo {
    background: white !important;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Floating install button icon */
.pwa-floating-btn i {
    background: white;
    border-radius: 50%;
    padding: 4px;
    margin-right: 4px;
}

/* Notification icons */
.pwa-notification-icon {
    background: white;
    border-radius: 8px;
    padding: 4px;
}

/* Home screen icon styling */
@media (display-mode: standalone) {
    .app-icon {
        background: white;
        border-radius: 12px;
        padding: 8px;
    }
}

/* Android specific icon styling */
@media screen and (max-width: 768px) {
    .pwa-logo {
        background: white !important;
        border-radius: 16px;
        padding: 12px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    }
}

/* iOS specific icon styling */
@supports (-webkit-touch-callout: none) {
    .pwa-logo {
        background: white !important;
        border-radius: 20px;
        padding: 16px;
        box-shadow: 0 6px 20px rgba(0,0,0,0.2);
    }
}
