/* Styles du pop-up */
.popup-container {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background-color: #25D366;
    border-radius: 8px;
    padding: 8px 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    z-index: 1000;
    animation: fadeIn 0.5s ease-in-out;
    max-width: 150px; /* Réduit la largeur du pop-up */
}

.popup-container img {
    width: 20px;  /* Réduit la taille de l'image */
    height: 20px;
    margin-right: 6px;
}

.popup-container a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 0.8rem;  /* Réduit la taille du texte */
}

.popup-container a:hover {
    text-decoration: underline;
}

/* Animation d'apparition */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Bouton de fermeture */
.close-btn {
    position: absolute;
    top: 2px;
    right: 2px;
    background: transparent;
    border: none;
    color: white;
    font-size: 0.9rem;  /* Réduit la taille du bouton */
    cursor: pointer;
}

.close-btn:hover {
    color: #000;
}
