.bar-container-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    justify-content: center;
}

  .bar-values {
    position: relative;
    width: 100%;
    font-size: 10px;
    line-height: 10px;
    pointer-events: none;
    height: 10px;
  }

  .bar-value {
    position: absolute;
    transform: translateX(-50%);
    white-space: nowrap;
  }
  .bar-values-bottom {
    font-weight: bold;
  }

  .bar-container {
    position: relative;
    width: 100%;
    height: 20px;
    background-color: #eee;
    border: 1px solid #ccc;
  }

  .bar-norm {
    position: absolute;
    top: 0;
    height: 100%;
    background-color: #8bc34a;
    z-index: 1;
  }

  .bar-analysis {
    position: absolute;
    top: 0;
    width: 2px;
    height: 100%;
    background-color: red;
    z-index: 2;
    transform: translateX(-50%);
  }

table.analysis-table th:nth-child(1),
table.analysis-table td:nth-child(1) {
    width: 150px;
}

table.analysis-table th:nth-child(2),
table.analysis-table td:nth-child(2) {
    width: 150px;
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    .mobile-only {
        display: block !important;
    }
}

@media (min-width: 769px) {
    .mobile-only {
        display: none !important;
    }
}