.canvasPane {
    display: flex;
    position: relative; /* Важно! Для правильного позиционирования */
    flex-wrap: wrap;
    align-content: space-around;
    justify-content: space-around;
    padding: 0px;
    width: 100%;
    height: 100%;
}

@media all and (max-width: 10000px) {
  .canvasPane {calc(99% - 29px); width: 65%;}
}

@media all and (max-width: 2500px) {
  .canvasPane {calc(99% - 29px);width: 55%;}
}


@media all and (max-width: 2000px) {
  .canvasPane {calc(99% - 29px);width: 50%;}
}

@media all and (max-width: 1750px) {
  .canvasPane {calc(99% - 29px);width: 45%;}
}

@media all and (max-width: 1500px) {
  .canvasPane {calc(99% - 29px);width: 40%;}
}

@media all and (max-width: 1300px) {
  .canvasPane {calc(99% - 29px);width: 99%;}
}


#table-container {
    display: none;
    position: absolute;
    top: 60px; /* Начинаем сразу под headPane */
    left: 0;
    width: 100%; /* Теперь совпадает с canvasPane */
    height: calc(100% - 60px); /* Высота = canvasPane - headPane (60px) */
    background: white;
    border: 1px solid #ccc;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Должно быть выше других элементов */
    padding: 10px;
/*    overflow: auto; /* Скролл при переполнении */*/
}

#example-table {
    flex-grow: 1; /* Занимает всё оставшееся место */
/*	 margin-top: 10px;*/
}

/* Кнопка закрытия */
#close-table {
    cursor: pointer;
    font-weight: bold;
    position: absolute;
    top: 5px;
    right: 10px;
}

/* Экран лога расчёта */
#calculation-log {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    color: black;
    font-size: 24px;
    display: none; /* Изначально скрыт */
    justify-content: center;
    align-items: center;
    z-index: 1001; /* выше, чем у таблицы */
}

/*input[type=range]:focus::-webkit-slider-runnable-track {
  background: #dcdcdc;
}*/

/*input[type=range]::-moz-range-track {
  background: rgba(200, 200, 200, 0.7);
  border: 1px solid #000101;
  border-radius: 1px;
  width: 100%;
  height: 20px;
  cursor: pointer;
}*/
/*input[type=range]::-moz-range-thumb {
  width: 5px;
  height: 22px;
  background: #000000;
  border: 1px solid rgba(100, 100, 100, 0);
  cursor: pointer;
}*/
/*input[type=range]::-ms-track {
  background: transparent;
  border-color: transparent;
  border-width: 15.85px 0;
  color: transparent;
  width: 100%;
  height: 20px;
  cursor: pointer;
}*/
/*input[type=range]::-ms-fill-lower {
  background: #b4b2b2;
  border: 0.9px solid #000101;
}*/
/*input[type=range]::-ms-fill-upper {
  background: rgba(200, 200, 200, 0.0);
  border: 0.9px solid #000101;
}*/
/*input[type=range]::-ms-thumb {
  width: 5px;
  height: 28px;
  background: #000000;
  border: 1.3px solid rgba(102, 104, 104, 0);
  cursor: pointer;
  margin-top: 0px;
}*/
/*Needed to keep the Edge thumb centred*/

/*input[type=range]:focus::-ms-fill-lower {
  background: rgba(200, 200, 200, 0.7);
}*/
/*input[type=range]:focus::-ms-fill-upper {
  background: #dcdcdc;
}*/





/* Moz*/
/*input[type="range"]::-moz-range-progress {
	background:  #FF0000;
}*/
/*input[type="range"]::-moz-range-track {  
	background:  #0000FF;
}*/
/* IE*/
/*input[type="range"]::-ms-fill-lower {
	background:  #FF0000;
}*/
/*input[type="range"]::-ms-fill-upper {  
	background:  #0000FF;
}*/



