.main-content {
  box-sizing: border-box;
}

.chart-box {
  box-sizing: border-box;
  position: relative;

  height: 100%;
  max-height: 100%;
  min-width: 500px;
}

.span_bez_name {
  white-space: nowrap;
}

#table-box {
  padding: 20px;
  overflow-x: auto;

  margin-right: 20px;
}

.table {
  border-collapse: collapse;
  font-size: 10pt;
  padding-right: 20px;
  white-space: nowrap;
}

.th-row-header {
  text-align: right;

  border: 1px solid black;
  padding: 2px 5px;
  min-width: 50px;
}
.th-header {
  border: 1px solid black;
  padding: 1px 5px;
  min-width: 50px;
}

.table td {
  text-align: center; /* Centers text horizontally */
  vertical-align: middle; /* Centers text vertically */
  padding: 1px 5px;
  min-width: 50px;

  border-collapse: collapse;
  border: 1px solid black;
}

h1 {
  font-size: 14pt;
  text-align: left;
  margin-bottom: 10px;
}

.btn-download {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px;
  height: 40px;
  z-index: 100000;
  background-color: var(--menu-color-hex);
  border: none;
  border-radius: 5px;

  display: flex;
  justify-content: center; /* Horizontally center the content */
  align-items: center; /* Vertically center the content */
}

.btn-download:hover {
  background-color: var(--button-hover-hex);
}

.hidden {
  display: none;
}
