/* Purchase Request wizard custom styles extracted from the HTML reference */
.glass {
	background: rgba(255, 255, 255, 0.05);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.glow {
	box-shadow: 0 0 16px rgba(59, 130, 246, 0.5), 0 0 10px rgba(79, 70, 229, 0.5);
}
.tooltip { position: relative; display: inline-block; }
.tooltip .tooltip-text {
	visibility: hidden;
	background-color: rgba(0, 0, 0, 0.7);
	color: #fff;
	text-align: right;
	border-radius: 6px;
	padding: 8px 12px;
	position: absolute;
	z-index: 100;
	top: 150%;
	right: 0;
	opacity: 0;
	transition: opacity 0.3s;
	width: 250px;
	font-size: 0.8rem;
	white-space: normal;
}
.tooltip .tooltip-text::after {
	content: "";
	position: absolute;
	bottom: 100%;
	right: 15px;
	margin-right: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent rgba(0, 0, 0, 0.7) transparent;
}
.tooltip:hover .tooltip-text { visibility: visible; opacity: 1; }
.wizard-step-link { transition: all 0.3s; }
.wizard-step-link.active { font-weight: 700; color: #3b82f6; }

