/* Skeleton Loading Animation */
.skeleton {
    background: #111;
    background: linear-gradient(90deg, #111 25%, #222 50%, #111 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    opacity: 0.7;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Skeleton Utilities */
.sk-text {
    height: 1em;
    margin-bottom: 0.5em;
    width: 80%;
}

.sk-text-sm {
    height: 0.8em;
    width: 60%;
}

.sk-card {
    height: 300px;
    width: 100%;
    border-radius: 12px;
    margin-bottom: 20px;
}

.sk-title {
    height: 3rem;
    width: 50%;
    margin: 2rem auto;
}

.sk-btn {
    height: 40px;
    width: 150px;
    display: inline-block;
}

/* Page Transition States */
.page-transition-enter {
    opacity: 0;
    transform: translateY(10px);
}

.page-transition-enter-active {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.page-transition-exit {
    opacity: 1;
}

.page-transition-exit-active {
    opacity: 0;
    transition: opacity 0.2s ease;
}