/* Custom Animations */
.flash-green { 
    animation: flashGreen 1s ease-out; 
}

.flash-red { 
    animation: flashRed 1s ease-out; 
}

@keyframes flashGreen {
    0% { background-color: rgba(16, 185, 129, 0.2); }
    100% { background-color: transparent; }
}

@keyframes flashRed {
    0% { background-color: rgba(239, 68, 68, 0.2); }
    100% { background-color: transparent; }
}
