/* WooCommerce PDF Invoice - Customer Area Styles */

.wc-pdf-invoices-list {
    margin: 20px 0;
}

.wc-pdf-invoices-list h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.wc-pdf-invoices-list>p {
    margin-bottom: 20px;
    color: #666;
}

/* Botão de download do PDF */
.wc-pdf-download-btn {
    display: inline-block;
    padding: 8px 16px;
    background-color: #007cba;
    color: #fff !important;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.wc-pdf-download-btn:hover {
    background-color: #005a87;
    color: #fff !important;
}

.wc-pdf-download-btn:active {
    transform: translateY(1px);
}

/* Texto quando não há invoice disponível */
.no-invoice {
    color: #999;
    font-style: italic;
    font-size: 13px;
}

/* Melhorias na tabela de invoices */
.wc-pdf-invoices-list .woocommerce-orders-table {
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.wc-pdf-invoices-list .woocommerce-orders-table thead {
    background-color: #f7f7f7;
}

.wc-pdf-invoices-list .woocommerce-orders-table thead th {
    font-weight: 600;
    color: #333;
    padding: 12px 15px;
}

.wc-pdf-invoices-list .woocommerce-orders-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.wc-pdf-invoices-list .woocommerce-orders-table tbody tr:last-child {
    border-bottom: none;
}

.wc-pdf-invoices-list .woocommerce-orders-table tbody td {
    padding: 12px 15px;
    vertical-align: middle;
}

/* Responsividade */
@media screen and (max-width: 768px) {
    .wc-pdf-download-btn {
        padding: 6px 12px;
        font-size: 13px;
    }

    .wc-pdf-invoices-list .woocommerce-orders-table {
        font-size: 14px;
    }
}

/* Ícone de PDF (opcional) */
.wc-pdf-download-btn::before {
    content: "📄 ";
    margin-right: 5px;
}

/* Animação suave */
.wc-pdf-invoices-list {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Estado de hover na linha da tabela */
.wc-pdf-invoices-list .woocommerce-orders-table tbody tr:hover {
    background-color: #f9f9f9;
}

/* Link do pedido */
.wc-pdf-invoices-list .woocommerce-orders-table a {
    color: #007cba;
    text-decoration: none;
    font-weight: 500;
}

.wc-pdf-invoices-list .woocommerce-orders-table a:hover {
    text-decoration: underline;
}