


/* ==========================================
   FILE 4: style.css
   PATH: /wp-content/plugins/products-table-export/style.css
   ========================================== */

.products-table-wrapper {
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.products-table-wrapper h3 {
    color: #333;
    font-weight: 600;
    margin: 0;
}

#exportPDF {
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 8px 20px;
}

#exportPDF:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

#exportPDF svg {
    margin-right: 5px;
}

#productsTable {
    margin-top: 10px;
}

#productsTable thead th {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

#productsTable tbody tr {
    transition: background-color 0.2s ease;
}

#productsTable tbody tr:hover {
    background-color: #f8f9fa !important;
}

#productsTable td {
    vertical-align: middle;
}

@media (max-width: 768px) {
    .products-table-wrapper {
        padding: 15px;
    }
    
    .d-flex.justify-content-between {
        flex-direction: column;
        gap: 15px;
    }
    
    #exportPDF {
        width: 100%;
    }
}