.lb-container {
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.lb-live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    color: #c0392b;
    margin-bottom: 12px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
}

.lb-live-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #c0392b;
    animation: lb-pulse 1.6s ease-in-out infinite;
}

@keyframes lb-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.lb-ended-notice {
    display: inline-block;
    background: #eee;
    color: #555;
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 13px;
    margin-bottom: 12px;
}

.lb-new-updates-notice {
    display: block;
    width: 100%;
    margin: 0 0 12px;
    padding: 10px;
    background: #2271b1;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    position: sticky;
    top: 10px;
    z-index: 5;
}

.lb-new-updates-notice[hidden] {
    display: none;
}

.lb-new-updates-notice:hover {
    background: #135e96;
}

.lb-entry-stream {
    list-style: none;
    margin: 0;
    padding: 0;
}

.lb-entry {
    border-left: 3px solid #ddd;
    padding: 10px 14px;
    margin-bottom: 12px;
    background: #fafafa;
    border-radius: 0 4px 4px 0;
}

.lb-entry.is-pinned {
    border-left-color: #d98500;
    background: #fff8e5;
}

.lb-pin-flag {
    display: inline-block;
    background: #d98500;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 3px;
    margin-bottom: 6px;
}

.lb-entry-meta {
    font-size: 12px;
    color: #777;
    margin-bottom: 4px;
}

.lb-entry-author {
    margin-left: 6px;
    font-weight: 600;
}

.lb-entry-content p:first-child {
    margin-top: 0;
}

.lb-entry-content p:last-child {
    margin-bottom: 0;
}

.lb-entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 3px;
    display: block;
    margin: 8px 0;
}

.lb-entry-content h1,
.lb-entry-content h2,
.lb-entry-content h3,
.lb-entry-content h4 {
    margin: 0.6em 0 0.3em;
    line-height: 1.3;
}

.lb-entry-content blockquote {
    margin: 8px 0;
    padding-left: 12px;
    border-left: 3px solid #ccc;
    color: #555;
}

.lb-entry-content a {
    color: #2271b1;
    text-decoration: underline;
    word-break: break-word;
}

.lb-entry-content a:hover {
    color: #135e96;
}

.lb-empty {
    color: #777;
    font-style: italic;
}
