﻿.div-table-main-container {
    display: flex;
    gap: 20px;
    align-items: stretch;
    height: 600px;
}

.div-table-wrapper {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 100%;
    padding-right: 6px;
}

.div-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 6px;
}

    .div-table td {
        vertical-align: top;
    }

    .div-table .div-table-label {
        white-space: nowrap;
        font-weight: 600;
        text-align: right;
        padding-right: 14px;
        width: 1%;
    }

    .div-table .div-table-value {
        width: 100%;
        word-break: break-word;
    }

    .div-table ul {
        margin-bottom: 0;
        padding-left: 20px;
    }