/* ============================================
   ANIMATIONS
   ============================================ */

/* Fade in */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Smooth transitions */
a,
button,
input,
textarea,
select {
    transition: all 0.2s ease;
}

/* Hover states */
a:hover {
    opacity: 0.7;
}

/* Table row hover */
.client-table tbody tr {
    transition: background-color 0.15s ease;
}
