[x-cloak] { display: none !important; }

/* LinkedIn preview card */
.linkedin-preview {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}
.linkedin-preview .lp-header {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    gap: 8px;
}
.linkedin-preview .lp-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0A66C2, #004182);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}
.linkedin-preview .lp-meta { line-height: 1.3; }
.linkedin-preview .lp-name { font-weight: 600; font-size: 14px; color: #000; }
.linkedin-preview .lp-headline { font-size: 12px; color: #666; }
.linkedin-preview .lp-time { font-size: 12px; color: #999; }
.linkedin-preview .lp-body {
    padding: 0 16px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: #000;
    white-space: pre-wrap;
    word-wrap: break-word;
}
.linkedin-preview .lp-body .hashtag {
    color: #0A66C2;
    font-weight: 500;
}
.linkedin-preview .lp-actions {
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-around;
    padding: 4px 0;
}
.linkedin-preview .lp-action {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    color: #666;
    font-size: 12px;
    font-weight: 600;
}

/* Char counter */
.char-counter { transition: color 0.2s; }
.char-counter.warning { color: #f59e0b; }
.char-counter.danger { color: #ef4444; font-weight: 600; }

/* Status badges */
.status-dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.status-dot.idea { background: #9ca3af; }
.status-dot.draft { background: #f59e0b; }
.status-dot.ready { background: #10b981; }
.status-dot.published { background: #9ca3af; }
.status-dot.retrospective { background: #8b5cf6; }

/* Pillar badge */
.pillar-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 500;
}
.pillar-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

/* Sortable drag */
.sortable-ghost {
    opacity: 0.4;
    background: #dbeafe !important;
}
.sortable-chosen {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Countdown */
.countdown-timer { font-variant-numeric: tabular-nums; }

/* Copy button feedback */
.copy-btn.copied {
    background-color: #10b981 !important;
    color: white !important;
}
