.sales-table {
    width: 100%;
    border-collapse: collapse;
}

.sales-table thead tr {
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.dark .sales-table thead tr {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sales-table th {
    padding: 14px 12px;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.dark .sales-table th {
    color: #ffffff;
}

.sales-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

.dark .sales-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sales-table tbody tr:hover {
    background: #f9fafb;
}

.dark .sales-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.sales-table td {
    padding: 16px 12px;
    font-size: 14px;
    white-space: nowrap;
}

.sales-table .td-id {
    color: #111827;
    font-weight: 500;
}

.dark .sales-table .td-id {
    color: #ffffff;
}

.sales-table .td-text {
    color: #6b7280;
}

.dark .sales-table .td-text {
    color: #9ca3af;
}

.sales-table .td-amount {
    color: #111827;
    font-weight: 600;
}

.dark .sales-table .td-amount {
    color: #ffffff;
}