/* 
 * Il Brigante - PWA Success Toast
 * Toast di conferma per l'installazione dell'app
 */

.pwa-success-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pwa-success-toast.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.pwa-toast-icon {
    margin-right: 10px;
    color: #4caf50;
    font-size: 18px;
}

.pwa-toast-message {
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 480px) {
    .pwa-success-toast {
        width: 85%;
        padding: 10px 16px;
    }
    
    .pwa-toast-icon {
        font-size: 16px;
    }
    
    .pwa-toast-message {
        font-size: 13px;
    }
}
