/* SKELETON LOADING ANIMATION */

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.skeleton {
    background: #e0e0e0;
    background: linear-gradient(90deg, #377d5d 25%, #42926d 50%, #377d5d 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

/* Specific Shapes */
.skeleton-text {
    height: 1rem;
    margin-bottom: 0.5rem;
    width: 100%;
}

.skeleton-title {
    height: 2rem;
    margin-bottom: 1rem;
    width: 50%;
    margin-left: auto;
    margin-right: auto;
}

.skeleton-rect {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

.skeleton-card {
    width: 100%;
    padding: 15px;
    background-color: var(--secondary);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}

.skeleton-row {
    width: 100%;
    height: 40px;
    margin-bottom: 5px;
}

/* Albo Specific */
.skeleton-albo-table {
    width: 100%;
    height: 150px;
    margin-bottom: 20px;
    border-radius: 10px;
}

/* Dark Mode adjustment if needed (using current variables) */
/* The gradient colors above are based on your green theme (--secondary) */