/*Estilos personalizados para la tabla */
.table-wrapper.downloadable-products {
    margin: 20px 0;
}

.table-wrapper.downloadable-products .pagination-controls {
    margin-bottom: 10px;
}

.table-wrapper.downloadable-products .pagination-controls button {
    background-color: #009640;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}

.table-wrapper.downloadable-products .pagination-controls button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.table-wrapper.downloadable-products table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.table-wrapper.downloadable-products table th {
    background-color: #e5e5e5;
    font-weight: bold;
    padding: 10px;
    text-align: center;
    border-bottom: 2px solid #ccc;
    color: #333;
}

.table-wrapper.downloadable-products table tbody tr {
    border-bottom: 1px solid #ddd;
}

.table-wrapper.downloadable-products table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.table-wrapper.downloadable-products table tbody tr:hover {
    background-color: #f1f1f1;
}

.table-wrapper.downloadable-products table td {
    padding: 10px;
    vertical-align: middle;
    word-wrap: break-word;
}

.table-wrapper.downloadable-products table td.image {
    text-align: center;
}

.table-wrapper.downloadable-products table td.date {
    text-align: center;
}

.table-wrapper.downloadable-products table td img {
    border-radius: 5px;
    border: 1px solid #ccc;
}

.table-wrapper.downloadable-products table caption {
    caption-side: top;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

/* Separar bien las columnas */
.table-wrapper.downloadable-products table th,
.table-wrapper.downloadable-products table td {
    border-right: 1px solid #ddd;
}

.table-wrapper.downloadable-products table th:last-child,
.table-wrapper.downloadable-products table td:last-child {
    border-right: none; /* Quitar borde en la última columna */
}
