/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jul 27 2026 | 06:56:58 */
/* Table */
.ds-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
}

/* Header */
.ds-table thead th {
    padding: 14px 16px;
    background: #0a3cff !Important;
    color: #fff!Important;
    text-align: center;
    font-weight: 600;
    border: 1px solid #e5e7eb;
}

.ds-table thead th:first-child {
    border-left: 4px solid #ff6a00;
}

/* Body */
.ds-table tbody td {
    padding: 14px 16px;
    color: #374151;
    line-height: 1.6;
    vertical-align: top;
    border: 1px solid #e5e7eb;
}

/* Alternate Rows */
.ds-table tbody tr:nth-child(even) {
    background: #f8fafc;
}

/* Hover */
.ds-table tbody tr:hover {
    background: #eef4ff;
    transition: background 0.2s ease;
}

