    /* Unclickable Link Class */
    .unclickable {
        pointer-events: none; /* Prevents all mouse events (clicks, hover) */
        cursor: default; /* Changes cursor back to default arrow */
        opacity: 0.65; /* Visually indicates the card is disabled */
        filter: grayscale(100%); /* Optional: makes it look inactive */
    }