body {
    font-family: 'Inter', sans-serif;
}

[v-cloak] {
    display: none;
}

.fade-enter-active,
.fade-leave-active {
    transition: opacity 0.3s ease;
}

.fade-enter-from,
.fade-leave-to {
    opacity: 0;
}

/* Regeneration Animations */
.regen-loading {
    transition: all 0.5s ease;
    opacity: 0.5;
    filter: blur(1px);
    background-color: rgba(0, 0, 0, 0.05);
}

.regen-success {
    animation: appearHighlight 3s ease-out forwards;
}

@keyframes appearHighlight {
    0% {
        opacity: 0;
        background-color: rgba(59, 130, 246, 0.2);
    }

    20% {
        opacity: 1;
        background-color: rgba(59, 130, 246, 0.2);
    }

    100% {
        opacity: 1;
        background-color: transparent;
    }
}
