﻿/*
 * BEGIN 
 *
 * @BEGIN Header Block
 * @FILENAME: public/css/pages/finance.css
 * @TITLE: SYNATHRA
 * @DESCRIPTION: Finance module - invoices, expenses, payroll, budget tables, and charts
 * @AUTHOR: Ary van der Pijl
 * @COMPANY: ATH SOLUTIONS (PTY) LTD
 * @WEBSITE: https://www.ath.solutions/
 * @EMAIL: info@ath.solutions
 * @COPYRIGHT: All Rights Reserved
 * @LICENSE: ATH SOLUTIONS - PROPRIETARY SOFTWARE LICENCE AGREEMENT (https://www.ath.solutions/documents/ath_solutions_software_licence_agreement.pdf)
 *
 * BEGIN CHANGELOG
 * @IMPORTANT NOTICE: Developers working on these files MUST update and maintain the Developers Change Log, failure to do is not an option:
 * !==================================================================================================================================================================
 * VERSION 1.0.0.1
 * + File Created, Ary van der Pijl, 2026/05/01
 * + File Modified, Ary van der Pijl, 2026/05/01, [TICKET #], Enhancing
 * ==================================================================================================================================================================!
 * END CHANGELOG
 */

.card {
    transition: transform 0.2s;
    border: 1px solid var(--border-default);
}

.card:hover {
    transform: translateY(-2px);
}

[data-theme="dark"] .card {
    background: var(--surface-raised);
}

h3, h5, h6 {
    color: var(--text-primary);
}

.text-muted {
    color: var(--text-tertiary) !important;
}

.table thead th {
    border-bottom: 2px solid var(--border-default);
    color: var(--text-secondary);
}

.table td {
    color: var(--text-primary);
    border-top: 1px solid var(--border-default);
}
