.ptsp-popup {
	position: fixed;
	top: 0; left: 0;
	width: 100%; height: 100%;
	background: rgba(0,0,0,0.5);
	display: flex; justify-content: center; align-items: center;
	z-index: 9999;
}

.ptsp-popup-inner {
	background: #fff;
	padding: 20px;
	max-width: 400px;
	width: 90%;
	border-radius: 6px;
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ptsp-popup-inner input,
.ptsp-popup-inner textarea {
	padding: 10px;
	border: 1px solid #ddd;
}

.ptsp-popup-inner button {
	background: #e91e63;
	color: #fff;
	padding: 10px;
	border: none;
	cursor: pointer;
}

.ptsp-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: #e91e63;
	color: white;
	border: none;
	padding: 5px 10px;
	cursor: pointer;
}

.hidden {
	display: none;
}

.progress-track-wrapper {
	margin-top: 15px;
}

.progress-bar-container {
	width: 100%;
	background-color: #f3f3f3;
	border: 1px solid #ccc;
	border-radius: 4px;
	height: 20px;
	overflow: hidden;
}

.progress-bar-fill {
	height: 100%;
	background-color: #3c9;
	width: 0%;
	transition: width 0.5s ease-in-out;
}

.ptsp-success-message {
	font-weight: bold;
}
