/* Utility class for smooth hiding */
.hide-card {
    opacity: 0;
    transform: scale(0.9);
    pointer-events: none;
    position: absolute;
    /* removes from document flow during animation */
    visibility: hidden;
}
