.bm-item {
    background: var(--card2); border: 1.5px solid var(--border);
    border-radius: 12px; padding: 10px 12px;
}
.bm-meta { display: flex; justify-content: space-between; margin-bottom: 4px; }
.bm-name { font-size: 12px; font-weight: 700; color: var(--text); }
.bm-date { font-size: 11px; color: var(--muted); }
.bm-body {
    font-size: 13px; color: var(--text); line-height: 1.55;
    white-space: pre-wrap; word-break: break-word;
    border-right: 3px solid #0284c7; padding-right: 8px;
    margin-bottom: 8px;
    display: -webkit-box; -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; overflow: hidden;
}
.bm-remove {
    font-size: 11px; color: var(--muted); background: none; border: none;
    cursor: pointer; padding: 3px 6px; border-radius: 6px;
    transition: color .15s, background .15s;
}
.bm-remove:hover { color: #ef4444; background: rgba(239,68,68,.1); }
.bm-empty {
    text-align: center; color: var(--muted); padding: 30px 0;
}
.bm-empty i { font-size: 32px; display: block; margin-bottom: 8px; opacity: .4; }
.bm-empty p { font-size: 13px; margin: 0; }
