.thread__actions {
    display: flex;
    gap: 8px;
}

.message-body {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 12px;
}

.action-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

/* Thread connection line */
.tweet:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 36px;
    top: 52px;
    bottom: -12px;
    width: 1px;
    background-color: var(--secondary);
}

.tweet:last-child::after {
    display: none;
}