/* Safe/Treasury Page CSS */
.transaction-row {
    transition: all 0.2s ease;
}

.transaction-row:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.amount-positive {
    color: #10B981; /* Green-500 */
}

.amount-negative {
    color: #EF4444; /* Red-500 */
}

.card-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
}
