/* Title TextView: black color, 18sp size, bold, centered */
.supportdialog-title {
	margin: 0;
	width: 100%;
	text-align: center;
	color: #000000;
	font-size: 18px;
	font-weight: bold;
}

/* ImageView: 50dp height, 8dp margin top, fitCenter */
.supportdialog-image {
	display: block;
	width: 100%;
	height: 50px;
	margin-top: 8px;
	object-fit: contain;
}

/* Message TextView: black color, 15sp size, 8dp margin top */
.supportdialog-message {
	margin: 0;
	margin-top: 8px;
	color: #000000;
	font-size: 15px;
	line-height: 1.4;
}