/* Global table styling for all pages */

/* Reduce row spacing - applies to all .table-themed tables */
.table-themed {
    border-collapse: collapse;
}

.table-themed tbody td,
.table-themed thead th,
.table-themed tfoot td {
    padding: 0.5rem !important;
    vertical-align: middle;
    line-height: 1;
    height: 20px;
}

.table-themed tbody tr {
    height: 20px;
}

.table-themed tbody tr + tr {
    margin-top: -1px;
}

/* Grand Total row - Light mode */
.grand-total-row {
    background-color: #d4edda !important;
    color: #0d3d1a !important;
}

.grand-total-row td {
    background-color: #d4edda !important;
    color: #0d3d1a !important;
}

/* Grand Total row - Dark mode */
@media (prefers-color-scheme: dark) {
    .grand-total-row {
        background-color: #1a4d2e !important;
        color: #90ee90 !important;
    }

    .grand-total-row td {
        background-color: #1a4d2e !important;
        color: #90ee90 !important;
        border-color: #2d5a3f !important;
    }
}
