.chem-panel .x-panel-header-text {
    color: #0ff;
    font-size: 18px;
}

.chem-grid-container {
    display: flex;
    justify-content: flex-end;
    padding: 10px;
}

.chem-grid {
    position: relative;
    width: 180px;
    height: 80px;
    margin-right: 20px;
}

.chem-row {
    display: flex;
    justify-content: space-between;
    height: 50%;
    position: relative;
}

.chem-row .chem-value {
    position: relative;
}

.chem-row .chem-value:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 0;
    height: 100%;
    width: 1px;
    background-color: #fff;
}

.chem-row.top-row::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #fff;
}

.chem-value {
    flex: 1;
    text-align: center;
    padding: 5px;
    font-size: 18px;
    z-index: 2;
}

.chem-value.success {
    color: #0f0;
}

.chem-value.warning {
    color: #ff0;
}

.straight-line {
    position: absolute;
    top: 0;
    right: 32px;
    width: 0.5px;
    height: 100%;
    background-color: white;
}
.diagonal-lines {
    position: absolute;
    right: -33px;
    top: 0;
    height: 100%;
    width: 20px;
}

.diagonal-line-1 {
    position: absolute;
    top: 0;
    right: 10px;
    width: 1px;
    height: 55%;
    background-color: white;
    transform: rotate(30deg);
    transform-origin: top left;
}

.diagonal-line-2 {
    position: absolute;
    bottom: 0;
    right: 10px;
    width: 1px;
    height: 55%;
    background-color: white;
    transform: rotate(-30deg);
    transform-origin: bottom left;
}
