/* ── Entity TagCanvas Widget ──────────────────────────────────────────────── */
/* TagCanvas has no external CSS — all rendering happens on the <canvas>. */

.entity-tagcanvas-widget { display: block; width: 100%; }
.entity-tagcanvas-title  { margin-bottom: 12px; }
.entity-tagcanvas-body   { display: block; width: 100%; text-align: center; }

/* The hidden <ul> holding tag links — never visible to the user */
.entity-tagcanvas-tags   { display: none !important; }

/* Design-mode skeleton */
.entity-tagcanvas-skeleton {
    width: 100%; min-height: 300px; background: #f5f7fa;
    border: 1px dashed #c0cad8; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #90a0b4; font-size: 13px; font-style: italic;
    animation: tagcanvas-shimmer 1.6s infinite;
    max-width: 400px; margin: 0 auto;
}
@keyframes tagcanvas-shimmer { 0%,100%{opacity:1} 50%{opacity:.55} }

.entity-tagcanvas-empty { padding: 20px; text-align: center; color: #6b7a8d; font-size: 13px; }
