/* Custom styles for Excel to Table shortcode */
.excel-table-custom {
    border-collapse: collapse;
    width: 100%;
    font-family: Arial, sans-serif;
}

.excel-table-custom th {
    background: #f7f8fb;
    color: #333;
    font-weight: bold;
    border: 1px solid #2767b0;
    padding: 8px;
}

.excel-table-custom td {
    border: 1px solid #2767b0;
    padding: 8px;
}

.excel-table-custom tr:nth-child(even) {
    background: #fafafa;
}

/* Remove DataTables default background only, keep your border */
table.dataTable th,
table.dataTable td {
    background: transparent !important;
}


/* Beautify DataTables pagination */
.dataTables_wrapper .dataTables_paginate {
    margin-top: 16px;
    text-align: center;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
    background: #f7f8fb;
    border: 1px solid #2767b0;
    color: #2767b0 !important;
    border-radius: 6px;
    padding: 6px 12px;
    margin: 0 2px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    background: #2767b0;
    color: #fff !important;
    border-color: #2767b0;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
    background: #2767b0;
    color: #fff !important;
    border-color: #2767b0;
    box-shadow: 0 2px 8px rgba(39,103,176,0.08);
}


.dataTables_filter input{
    text-align: left !important;
    min-width: 210px !important;;
    min-height: 43px !important;;
    max-width: 210px !important;;
    display: block !important;;
}