/* ============================================
   Shared Table Styles for SRCADMIN
   ============================================ */

/* Clickable Amount Cell Styles
   Used in financial/analytical tables for interactive amounts
   Applied to monetary values that open detail dialogs on click
   ============================================ */
.clickable-amount {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

    .clickable-amount:hover {
        color: #1976d2;
        font-weight: 600;
        background-color: rgba(25, 118, 210, 0.08);
        border-radius: 4px;
        padding: 2px 4px;
    }

/* Amount Cell Alignment
   ============================================ */
.amountCell {
    text-align: right;
}

.amountHeaderCellBold {
    font-weight: 700;
    text-align: right;
}
