/**
 * AccessVane's editor sidebar.
 *
 * Sits inside WordPress's own sidebar, so it borrows the editor's spacing and
 * type rather than introducing a second visual language in a panel 280px wide.
 */

.accessvane-editor {
	padding: 16px;
	font-size: 13px;
	line-height: 1.5;
}

.accessvane-editor__count {
	margin: 0 0 12px;
	font-weight: 600;
}

.accessvane-editor__clear {
	margin: 0 0 12px;
	font-weight: 600;
	color: #007017;
}

.accessvane-editor__list {
	margin: 0;
	padding: 0;
	list-style: none;
}

.accessvane-editor__item {
	margin: 0 0 10px;
	padding: 10px 12px;
	background: #f0f0f1;
	border-radius: 4px;
	border-left: 3px solid #c3c4c7;
}

.accessvane-editor__item--critical { border-left-color: #b32d2e; background: #fcf0f1; }
.accessvane-editor__item--serious  { border-left-color: #b26200; background: #fcf5ea; }
.accessvane-editor__item--moderate { border-left-color: #8a6d00; background: #fbf6e3; }

/* A plain button, styled as the link it behaves like. It stays a <button>
   because it acts on this page rather than navigating anywhere. */
.accessvane-editor__jump {
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	border: 0;
	background: none;
	text-align: left;
	font: inherit;
	font-weight: 600;
	color: #0b63ce;
	cursor: pointer;
	text-decoration: underline;
}

.accessvane-editor__jump:hover {
	color: #04408a;
}

.accessvane-editor__jump:focus-visible {
	outline: 2px solid #0b63ce;
	outline-offset: 2px;
	border-radius: 2px;
}

.accessvane-editor__body {
	margin: 4px 0 0;
	color: #3c434a;
}

.accessvane-editor__note {
	margin: 16px 0 0;
	padding-top: 12px;
	border-top: 1px solid #dcdcde;
	color: #646970;
	font-size: 12px;
}
