.show-image-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden; /* Ensure the ribbon stays contained within the wrapper */
}

.show-image-wrapper .ribbon {
    position: absolute;
    top: 30px; /* Start 30px above the image */
    left: 0;
    background-color: #c00; /* Ribbon background color */
    color: #fff; /* Ribbon text color */
    padding: 5px 25px;
    font-size: 16px;
    font-weight: bold;
    font-family: Arial, sans-serif;
    text-transform: uppercase;
    line-height: 1.5;
    white-space: nowrap;
    z-index: 10;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
    opacity: 0; /* Make it invisible initially */
    transform: translateY(-30px); /* Start above the image */
    animation: ribbon-slide-in 0.8s ease-out forwards; /* Trigger the animation */
}

/* Add the animation keyframes */
@keyframes ribbon-slide-in {
    0% {
        opacity: 0;
        transform: translateY(-30px) scale(1.1); /* Start above and slightly larger */
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1); /* Settle into its final position */
    }
}

/* Optional: Styling for the image */
.show-image-wrapper .featured-image {
    display: block;
    width: 100%;
    height: auto;
}

.show-status-label {
    display: inline-block;
    vertical-align: middle;
}

.status-image {
    border-radius: 5px;
    max-width: 100px;
    height: auto;
}



