.popupOverlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.45);
	z-index: 9998;
	display: none;
}

.popupBox {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 520px;
	max-width: 92%;
	background: #fff;
	border: 1px solid #bdbdbd;
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	padding: 14px;
	z-index: 9999;
	display: none;
}

.popupTitulo {
	font-weight: bold;
	margin-bottom: 12px;
	text-align: center;
}

.popupFila {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	margin-bottom: 10px;
}

.popupFila label {
	display: inline-block;
	width: 105px;
	padding-top: 6px;
	text-align: left;
}

.popupFila textarea {
	flex: 1;
	max-width: 60%;
	box-sizing: border-box;
	min-height: 50px;
	resize: vertical;
}

.popupFooter {
	text-align: center;
	margin-top: 12px;
}
