/* Bouton générer facture */
.woocommerce-button.acc_open_invoice_modal {
    background-color: #1BB3B0 !important;
    border-color: #1BB3B0 !important;
    color: #fff !important;
    margin-left: 2px !important;
}

/* Modale */
.acc-invoice-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.acc-invoice-modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
}

.acc-close-modal {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.acc-close-modal:hover {
    color: #000;
}

.acc-products-list {
    border: 1px solid #ddd;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    max-height: 250px;
    overflow-y: auto;
}

/* Masquer le bouton de facture de l'ancien plugin dans Mon Compte */
.woocommerce-MyAccount-orders .woocommerce-button.invoice {
    display: none !important;
}