/* Avatar lightbox + click targets */

.bbat-avatar-lightbox {
	position: fixed;
	inset: 0;
	z-index: 1000000;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.88);
	padding: 24px;
	box-sizing: border-box;
}

.bbat-avatar-lightbox[hidden] {
	display: none !important;
}

.bbat-avatar-lightbox__img {
	max-width: min(92vw, 520px);
	max-height: min(92vh, 520px);
	border-radius: 8px;
	object-fit: contain;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.bbat-avatar-lightbox__close {
	position: absolute;
	top: 16px;
	right: 20px;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 36px;
	line-height: 1;
	cursor: pointer;
	padding: 8px;
}
