/* Placeholder Animations */
@keyframes pulse {
    0% {
        background-color: rgba(229, 231, 235, 1);
    }
    50% {
        background-color: rgba(209, 213, 219, 1);
    }
    100% {
        background-color: rgba(229, 231, 235, 1);
    }
}

/* Base placeholder */
.placeholder-card {
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

/* Placeholder elements */
.placeholder-image,
.placeholder-title,
.placeholder-text,
.placeholder-button,
.placeholder-icon {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    border-radius: 0.375rem;
}

/* Image placeholder */
.placeholder-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1rem;
}

/* Title placeholder */
.placeholder-title {
    height: 1.5rem;
    width: 80%;
    margin-bottom: 1rem;
}

/* Text placeholder */
.placeholder-text {
    height: 1rem;
    width: 100%;
    margin-bottom: 0.5rem;
}

/* Button placeholder */
.placeholder-button {
    height: 2.5rem;
    width: 8rem;
    margin-top: 1rem;
}

/* Icon placeholder */
.placeholder-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

/* Placeholder container */
[data-placeholder] {
    opacity: 0;
    animation: fadeIn 0.2s ease-in forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Content container */
[data-content] {
    opacity: 0;
    animation: fadeIn 0.3s ease-in forwards;
}

/* Placeholder widths variants */
.placeholder-text.w-3\/4 {
    width: 75%;
}

.placeholder-text.w-24 {
    width: 6rem;
} 