/*asdf*/

.bot-wrapper{
	display: inline-block;
	padding: 10px;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 5px;
}
.dark .bot-wrapper{
	background: rgba(255, 255, 255, 0.5);
}
.dark .bot-wrapper *{
	color: black;
}

.bot-wrapper.archivist{
	background: purple;
}






.bot-profile{
	margin: 0px 2px;
	border-radius: 10px;
	white-space: break-spaces;
	position: relative;
}

.bot-profile.is-user{
	/* border: 1px solid; */
}
.bot-profile.is-system path{
	/* fill: violet; */
}
.bot-created,
.bot-name{
	font-size: .85rem;
}
.bot-created{
	font-size: .7rem;
	opacity: .8;
}
.bot-profile.is-system .bot-name{
	color: var(--system);
}
.bot-profile.is-friend .bot-name{
	color: var(--friend);
}
.dark .bot-profile.is-friend .bot-name{
	color: var(--friend-dark);
}
.dark .bot-profile.is-system.active .bot-name{
	color: var(--system-dark-active);
}
.dark .bot-profile.is-system .bot-name{
	color: var(--system-dark);
}
.dark .bot-profile.is-user svg{
	background: lightgrey;
	border-radius: 5px;
}
.dark .bot-profile.is-user .bot-name{
	/* color: black; */
}

.bot-profile.make-new{
	text-align: center;
}
.bot-profile.make-new .button{
	margin-bottom: 2px;
}

.bot-page{
	user-select: none;
	position: absolute;
	top: 0px;
	right: 10px;
	transform: rotate(-45deg);
	font-size: 2rem;
	display: none;
}
.bot-profile:hover .bot-page{
	display: inline-block;
}
.bot-page:hover{
	color: orange;
	/* color: black; */
}
.bot-friend{
	position: absolute;
	top: 5px;
	right: -10;
	color: #3aa93a;
	width: 30px;
	height: 30px;
	border-radius: 50px;
	padding: 3px;
}
.bot-friend svg{
	padding: 0;
	/* border: 1px solid red; */
	top: 2;
	position: absolute;
	width: calc( 100% - 6px );
}
.dark .bot-friend{
	background: lightgrey;
}
.bot-friend path{
	stroke: 5px;
}