/* Рендерер Three.js занимает весь контейнер */
#graphContainer canvas {
  display: block;
  width: 100%;
  height: 100%;
  /* Без position: fixed или absolute */
}

/* Панель управления поверх графика */
#controls {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 10;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 8px 12px;
  border-radius: 4px 0 4px 0;
  user-select: none;
  font-size: 14px;
  width: auto;
}

input[type=number], select {
	width: 54px;
	font-size: 105%;
	padding: 2px;
	border-radius: 3px;
}
button {
	width: auto;
	font-size: 105%;
	padding: 2px;
	border-radius: 3px;
	cursor: pointer;
}
canvas {border-radius: 5px;}

/* Обеспечиваем расширение на весь экран */
:fullscreen, :-webkit-full-screen, :-moz-full-screen {
  width: 100vw;
  height: 100vh;
}
