.tabo-ss-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    max-width: 720px;
    margin: 1.5rem 0;
}

.tabo-ss-empty {
    padding: 20px;
    text-align: center;
    color: #777;
    font-size: 13px;
}

.tabo-ss-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Akordeon — wzorowany na sekcji "Sprawozdania" w Tabo Archive */
.tabo-ss-item {
    background: #111;
    border: 1px solid #262626;
    border-radius: 8px;
    overflow: hidden;
}

.tabo-ss-item summary {
    cursor: pointer;
    padding: 14px 18px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
}

.tabo-ss-item summary::-webkit-details-marker {
    display: none;
}

.tabo-ss-item summary::before {
    content: "▶ ";
    color: #9147ff;
    font-size: 12px;
}

.tabo-ss-item[open] summary::before {
    content: "▼ ";
}

.tabo-ss-live-badge {
    background: #e91e63;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 10px;
    white-space: nowrap;
    animation: tabo-ss-pulse 1.6s infinite;
}

@keyframes tabo-ss-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.tabo-ss-category {
    background: rgba(145, 71, 255, 0.15);
    color: #a78bfa;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 10px;
    white-space: nowrap;
}

.tabo-ss-title {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    flex: 1;
    min-width: 140px;
}

.tabo-ss-date {
    color: #9147ff;
    font-weight: 600;
    font-size: 12px;
    white-space: nowrap;
}

.tabo-ss-duration {
    color: #777;
    font-size: 12px;
    white-space: nowrap;
}

.tabo-ss-content {
    padding: 0 18px 18px 18px;
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tabo-ss-vod-link {
    color: #9147ff;
    font-size: 13px;
    text-decoration: none;
    font-weight: 600;
}

.tabo-ss-vod-link:hover { text-decoration: underline; }

.tabo-ss-section-title {
    color: #fff;
    font-size: 13px;
    margin: 0 0 8px 0;
}

/* Top czatterzy */
.tabo-ss-chatters-list {
    list-style: decimal;
    margin: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.tabo-ss-chatters-list li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 13px;
    margin: 0;
    padding: 2px 0;
    line-height: 1.3;
}

.tabo-ss-chatter-name { color: #eee; }
.tabo-ss-chatter-count { color: #9147ff; font-weight: 600; white-space: nowrap; }

/* Reakcje — spójne z resztą wtyczek Tabo */
.tabo-ss-reactions {
    display: flex;
    gap: 8px;
}

.tabo-reaction-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 16px;
    border: 1px solid rgba(145, 71, 255, 0.25);
    background: transparent;
    color: #999;
    cursor: pointer;
    transition: all 0.15s;
}

.tabo-reaction-btn:hover  { border-color: #9147ff; color: #9147ff; }
.tabo-reaction-btn:disabled { opacity: 0.5; cursor: default; }

.tabo-reaction-btn.active[data-type="up"]    { background: rgba(76,175,80,0.15); border-color: #4caf50; color: #4caf50; }
.tabo-reaction-btn.active[data-type="down"]  { background: rgba(244,67,54,0.15); border-color: #f44336; color: #f44336; }
.tabo-reaction-btn.active[data-type="heart"] { background: rgba(233,30,99,0.15); border-color: #e91e63; color: #e91e63; }

/* Komentarze */
.tabo-ss-comments-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.tabo-ss-no-comments {
    color: #666;
    font-size: 13px;
    margin: 0 0 12px 0;
}

.tabo-ss-comment {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 10px 14px;
}

.tabo-ss-comment-head {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    margin-bottom: 4px;
}

.tabo-ss-comment-head strong { color: #eee; }
.tabo-ss-comment-date { color: #666; white-space: nowrap; }

.tabo-ss-comment-text {
    margin: 0 0 8px 0;
    font-size: 13px;
    color: #ccc;
}

.tabo-ss-comment-img {
    max-width: 220px;
    height: auto;
    border-radius: 6px;
    display: block;
    margin-bottom: 8px;
}

.tabo-ss-comment-reactions {
    display: flex;
    gap: 6px;
}

.tabo-ss-comment-reactions .tabo-reaction-btn {
    font-size: 11px;
    padding: 3px 9px;
}

/* Formularz komentarza */
.tabo-ss-comment-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 8px;
    border: 1px dashed rgba(145,71,255,0.35);
    background: rgba(145,71,255,0.04);
}

.tabo-ss-input,
.tabo-ss-textarea {
    width: 100%;
    box-sizing: border-box;
    font-size: 13px;
    font-family: inherit;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #333;
    background: #111;
    color: #eee;
}

.tabo-ss-textarea {
    min-height: 60px;
    resize: vertical;
}

.tabo-ss-input:focus,
.tabo-ss-textarea:focus {
    outline: none;
    border-color: #9147ff;
}

.tabo-ss-form-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.tabo-ss-file-label {
    font-size: 12px;
    color: #999;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tabo-ss-file-label input[type="file"] {
    font-size: 11px;
    max-width: 160px;
    color: #999;
}

.tabo-ss-submit-btn {
    font-size: 12px;
    padding: 6px 18px;
    border-radius: 20px;
    border: 1px solid #9147ff;
    background: #9147ff;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.15s;
}

.tabo-ss-submit-btn:hover { opacity: 0.85; }
.tabo-ss-submit-btn:disabled { opacity: 0.5; cursor: default; }

.tabo-ss-form-status {
    font-size: 12px;
    color: #999;
}

@media (max-width: 480px) {
    .tabo-ss-item summary {
        padding: 12px 14px;
        gap: 8px;
    }
    .tabo-ss-title { font-size: 13px; }
    .tabo-ss-date, .tabo-ss-duration { font-size: 11px; }
    .tabo-ss-content { padding: 0 14px 14px 14px; }
}
