@charset "utf-8";

#simple-comments {
	margin-top: 1rem;
}

#comments-table {
}
#add-comment input[type="text"] {
	width: 100%;
	display: block;
}
#add-comment input[type="text"]:first-child {
	border-top-left-radius: 0.5rem;
	border-top-right-radius: 0.5rem;
}

#comments-table {
	border-spacing: 1px 0.5rem;
}
#comments-table td {
	font-size: 0.8rem;
	color: var(--card-foreground);
	background-color: var(--card-background);
	border: 1px solid var(--card-border);
	text-align: left;
	padding: 0.25rem;
	position: relative;
}
#comments-table td:first-child {
	border-top-left-radius: 0.25rem;
	border-bottom-left-radius: 0.25rem;
	width: 1px;
	white-space: nowrap;
}
#comments-table td:nth-child(2) {
	width: 1px;
}
#comments-table td:last-child {
	border-top-right-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
}

#comments-table .remove-comment {
	width: 1px;
	text-align: right;
	font-size: 1rem;
	cursor: pointer;
	color: var(--card-link);
	padding: 0 0.25rem;
}

#simple-comments form a {
	display: block;
	font-size: 0.75rem;
	line-height: 1rem;
	margin-top: 0.5rem;
}
