ui/heightcalibrationpanel.razor.scss
HeightCalibrationPanel {
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
	pointer-events: all;

	.container {
		width: 520px;
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 18px;
		padding: 36px 40px;
		background: rgba(20, 20, 25, 0.94);
		border: 2px solid rgba(255, 255, 255, 0.08);
		border-radius: 12px;
	}

	.title {
		font-size: 32px;
		font-weight: bold;
		color: white;
		text-transform: uppercase;
	}

	.instruction {
		font-size: 18px;
		color: rgba(255, 255, 255, 0.7);
		text-align: center;
	}

	.height {
		display: flex;
		flex-direction: column;
		align-items: center;
		gap: 6px;
		padding: 16px 0;
	}

	.value {
		font-size: 28px;
		font-weight: bold;
		color: #ffd54a;
	}

	.buttons {
		display: flex;
		flex-direction: row;
		gap: 16px;
		width: 100%;
		justify-content: center;
	}

	.button {
		min-width: 160px;
		height: 48px;
		padding: 0 24px;
		justify-content: center;
		align-items: center;
		font-size: 18px;
		font-weight: bold;
		color: white;
		background: rgba(255, 255, 255, 0.12);
		border: 1px solid rgba(255, 255, 255, 0.16);
		border-radius: 8px;
		cursor: pointer;

		&:hover {
			background: rgba(255, 255, 255, 0.2);
		}

		&.disabled {
			opacity: 0.35;
			pointer-events: none;
		}
	}
}