/* --- SKELETON LOADERS --- */
.skeleton-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 10px 0;
    width: 100%;
}

.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeletonLoading 1.5s infinite running;
    border-radius: 6px;
}

@keyframes skeletonLoading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.skeleton-title {
    height: 28px;
    width: 40%;
    margin-bottom: 10px;
    border-radius: 8px;
}

.skeleton-text {
    height: 16px;
    width: 100%;
}

.skeleton-text.line-2 {
    width: 90%;
}

.skeleton-text.line-3 {
    width: 75%;
}

.skeleton-box {
    margin-top: 15px;
    height: 80px;
    width: 100%;
    border-radius: 12px;
}

.mt-4 {
    margin-top: 25px;
}

/* --- SUCCESS STATE BUTTON ANIMATIONS --- */
.btn-success-flash {
    animation: flashSuccess 1.5s ease-out forwards !important;
}

@keyframes flashSuccess {
    0% {
        background: var(--success) !important;
        color: white !important;
        transform: scale(0.95);
    }

    15% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    }

    50% {
        background: var(--success) !important;
        color: white !important;
        transform: scale(1);
    }

    100% {}

    /* Return to whatever the class naturally was */
}