/* Start View Specific Styles */
.pwa-notice {
    background: #f0f9ff;
    border: 1px solid #7dd3fc;
    border-radius: 8px;
    padding: 12px;
}

.browser-options {
    /* Browser-specific options styling */
}

.install-instructions {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.install-instructions ul {
    list-style-position: inside;
    list-style-type: disc;
}

.install-instructions li {
    padding-left: 4px;
}