.denomination-card {
    transition: all 0.3s ease;
}

.denomination-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.note-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.total-amount {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.count-animation {
    animation: countUp 0.5s ease-out;
}
