/* frontend.css */

/* Styles pour le modal interactif */
.wpcp-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: none;
    z-index: 1000;
}

.wpcp-modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 20px;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
}

.wpcp-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wpcp-modal-close {
    cursor: pointer;
    font-size: 1.5em;
}

.wpcp-modal-content {
    margin-top: 20px;
}

.wpcp-preview {
    border: 1px solid #ddd;
    padding: 10px;
    margin-top: 10px;
}

.wpcp-copy-button {
    margin-top: 10px;
    padding: 10px 15px;
    background: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
}

.wpcp-copy-button:hover {
    background: #005177;
}
