a.watermark svg{
    display: none;
}

.bg-popover.text-sm.text-popover-foreground{ /* not sure about this class names and hierarchy */
    /*max-width: 500px;*/
}

.dialog_overlay {
	background: rgba(0, 0, 0, 0.5);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	display: grid;
	place-items: center;
	overflow-y: auto;
}
.message-content h1 {
  font-size: 22px;
}

.message-content h2 {
  font-size: 20px;
}

.message-content .text-2xl {
  font-size: 18.5px;
}
.dialog_content {
	min-width: 300px;
	background: white;
	padding: 30px;
	border-radius: 4px;
    /* max-height: 50vh;
    overflow-y: scroll; */
	img {
		width: 44px;
    	height: auto;
	}
	h2 {
		margin: 0 auto;
	}
	h3 {
		display: flex;
		justify-content: center;
	}
	h3, h3 + h3 {
		display: inline;
		margin-left: 10px;
	}
	/* p strong {
		display: flex;
	}
	p:has(img, strong) {
		display: flex;
		align-items: center;
		gap: 10px;
	} */
	/* hide 'x' close button */
	button:has(.sr-only) {
	    display: none !important;
	}
}

.dialog_content_scrollable{
    max-height: 55vh;
    overflow-y: auto;
}