/* YouTube Tag Extractor - tag / hashtag chips, description panel. */

.yte-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.yte-chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #f8fafc;
    border: 1px solid #e6e8eb;
    border-radius: 999px;
    padding: 5px 12px;
    font-size: 0.86rem;
    color: #1f2937;
    cursor: pointer;
    max-width: 100%;
    word-break: break-word;
}
.yte-chip:hover { border-color: #cbd2d9; background: #f3f4f6; }
.yte-chip-hash { background: #fdf6f6; }
.yte-chip-hash.is-lead { border-color: #e5b3b3; font-weight: 600; }

.yte-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.yte-actions .ghost-btn { text-decoration: none; font-size: 0.82rem; padding: 6px 12px; }

.yte-desc-head { display: flex; align-items: center; gap: 10px; }
.yte-desc-head .ytl-section-title { margin-bottom: 0; }
.yte-desc {
    background: #f8fafc;
    border: 1px solid #eef0f3;
    border-radius: 10px;
    padding: 12px 14px;
    font-family: inherit;
    font-size: 0.86rem;
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 340px;
    overflow-y: auto;
    margin: 8px 0 0;
}
