/* trnPopup dış sarmalayıcı */
.trnPopupWrapper
{
	position: fixed;
	top: 60px; /* header yüksekliği */
	left: 0;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;   /* dikey ortalama */
	justify-content: center; /* yatay ortalama */
	background: rgba(0, 0, 0, 0.5); /* arka plan karartma */
	z-index: 999;
}

/* trnPopup kutusu */
.trnPopup
{
	max-width: 80%;
	max-height: 90%;
	background: #fff;
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;	
	padding: 20px;
	box-shadow: 0 2px 15px rgba(0,0,0,0.8);
	text-align: center;
	overflow-y: auto;
	scrollbar-width: thin; /* Firefox için */
	scrollbar-color: #EDEDED #3E3E3E; /* Firefox için */
	color:#1F1F1F;
}

.trnPopup::-webkit-scrollbar
{
	width: 6px;
	height: 6px;
}

.trnPopup::-webkit-scrollbar-track
{
	background: #3E3E3E;
}

.trnPopup::-webkit-scrollbar-thumb
{
	background-color: #EDEDED;
	border-radius: 10px;
	border: 1px solid #EDEDED;
}	

.trnPopup h1
{
	margin-bottom: 25px;
	font-size: var(--font-size-lg);
}

.trnPopup h2
{
	margin-bottom: 15px;
	font-size: var(--font-size-md);
}

.trnPopup p
{
	margin-bottom: 15px;
	font-size: var(--font-size);
}

.trnPopup .buttons
{
	display: flex;
	justify-content: center;
	gap: 15px;
}

.trnPopup button
{
	padding: 10px 20px;
	font-size: var(--font-size);
	border: none;
	border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;	
	cursor: pointer;
}

.trnPopup button.trnCancel
{
	background: #B4373E;
	color: #fff;
}

.trnPopup button.trnConfirm
{
	background: #006165;
	color: #fff;
}

.trnPopup button.trnVerified
{
	background: #006165;
	color: #fff;
}