
/* css/icone.css - Styles pour le PWA */

.install-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 24px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: #ff0000; /* ROUGE */
}

.install-btn:hover {
    background: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 123, 255, 0.4);
}

.install-btn:active {
    transform: translateY(0);
}

/* Cache le bouton quand l'app est déjà installée */
@media (display-mode: standalone) {
    .install-btn {
        display: none !important;
    }
}

/* Styles responsives */
@media (max-width: 768px) {
    .install-btn {
        bottom: 10px;
        right: 10px;
        padding: 10px 20px;
        font-size: 12px;
    }
}

