/* StablePay Custom Styles */

/* Status badges */
.badge-active {
    @apply bg-green-100 text-green-800;
}

.badge-pending {
    @apply bg-yellow-100 text-yellow-800;
}

.badge-processing {
    @apply bg-blue-100 text-blue-800;
}

.badge-completed {
    @apply bg-green-100 text-green-800;
}

.badge-failed {
    @apply bg-red-100 text-red-800;
}

.badge-suspended {
    @apply bg-gray-100 text-gray-800;
}

/* Card hover effects */
.card-hover {
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

/* Italian number formatting helper */
.money {
    font-variant-numeric: tabular-nums;
}
