.slb-live-feed {
    max-width: 700px;
    margin: 20px 0;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 16px;
    background: #fafafa;
    font-family: inherit;
}

.slb-live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #d32f2f;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.slb-live-dot {
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    animation: slb-pulse 1.4s infinite;
}

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

.slb-feed-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.slb-feed-item {
    border-left: 3px solid #d32f2f;
    padding: 8px 0 8px 12px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 0 4px 4px 0;
}

.slb-feed-item.slb-new {
    animation: slb-highlight 2s ease-out;
}

@keyframes slb-highlight {
    0%   { background: #fff3cd; }
    100% { background: #fff; }
}

.slb-feed-time {
    font-size: 12px;
    color: #888;
    font-weight: bold;
    margin-bottom: 4px;
}

.slb-feed-headline {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
    line-height: 1.3;
}

.slb-feed-image img,
.slb-update-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 8px;
    display: block;
}

.slb-feed-content p {
    margin: 0 0 6px;
}

.slb-empty {
    color: #888;
    font-style: italic;
}

/* Admin metabox */
#slb-metabox-wrap .slb-update-item:last-child {
    border-bottom: none !important;
}
