/* Блоки банов */
.az-ban-entry {
    margin-bottom: 10px;
    padding: 8px 12px;
    background-color: var(--accent-color);
	color: var(--body-bg);
    border-radius: 5px;
}

.az-ban-entry__inner {
    position: relative;
    padding-left: 40px;
}

.az-ban-entry__inner i {
    position: absolute;
    top: 0px;
    left: 0px;
    color: var(--body-bg);
    font-size: 30px;
}

.main-area-content .az-ban-entry__inner p {
    margin-bottom: 5px;
}

.az-ban-entry.current {
    font-weight: bold;
    color: var(--body-bg);
}

.az-ban-entry.empty {
    font-style: italic;
    color: #555;
    background: #fff;
}

/* Блоки предупреждений */
.az-warning-entry {
    position: relative;
	margin-bottom: 10px;
    padding: 8px 12px;
    border: 1px solid var(--link-color);
    background-color: var(--widget-bg);
    border-radius: 5px;
}

.btn-toggle-warning {
	position: absolute;
	line-height: 0.8;
	top: 0;
	right: 0;
	padding: 5px;
	cursor: pointer;
}

.az-warning-entry p {
    margin: 2px 0;
    color: var(--link-color);
}

.az-warning-entry a,
.az-ban-entry a {
	color: inherit;
	text-decoration: underline;
}

#az-bans-modal {
	flex-grow: 0;
}

#az-bans-modal .az-bans-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(255, 255, 255, 0.8);
	z-index: 9998;
	display: block;
}

#az-bans-modal .az-bans-content {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 1.5em 1em;
	max-width: 400px;
	width: 100%;
	max-height: 80%;
	overflow-y: auto;
	z-index: 9999;
	border-radius: 6px;
}

#az-bans-modal .az-bans-content p {
	margin-bottom: 5px;
	line-height: 1;
}

.az-bans-btn {
	color: var(--accent-color);
	cursor: pointer;
}

#az-bans-modal .az-bans-close {
	position: absolute;
	top: 0;
	right: 0;
	font-size: 26px;
	cursor: pointer;
	color: #ccc;
	z-index: 1;
}