﻿/* Modal de partage */
.share-modal {
    display: none; /* caché par défaut */
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
}

.share-modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 20px;
    border-radius: 8px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

    .share-modal-content h3 {
        margin-bottom: 15px;
        font-weight: 700;
    }

    .share-modal-content ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .share-modal-content li {
        margin: 10px 0;
    }

    .share-modal-content a {
        text-decoration: none;
        font-weight: 600;
        color: #333;
    }

        .share-modal-content a:hover {
            color: #7c3aed;
        }

.share-close {
    float: right;
    font-size: 22px;
    cursor: pointer;
}


.copy-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #323232;
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 9999;
}

    .copy-popup.show {
        opacity: 1;
        transform: translateY(0);
    }
