﻿
/* Adjust label column width */
.esri-popup__field-label {
    display: inline-block;
    width: 150px; /* Set desired width */
    font-weight: bold;
}

/* Adjust value column width */
.esri-popup__field-value {
    display: inline-block;
    width: calc(100% - 150px); /* Remaining space */
    word-break: break-word; /* Prevent overflow */
}




/*.arcgis-feature-fields__table tr th {
    width: 120px !important;
}*/

/*.arcgis-feature-fields__table tr td {
    width: 80% !important;
}*/


.features-table-custom {
    border: none;
    width: 100%;
    border-collapse: collapse;
    color: var(--calcite-color-text-2);
}

    .features-table-custom tr:nth-child(odd) {
        background-color: var(--calcite-color-foreground-1);
    }

    .features-table-custom tr th {
        border-inline-end: var(--calcite-border-width-md) solid var(--calcite-color-border-3);
        width: 120px;
        text-align: start;
    }

    .features-table-custom tr td, .features-table-custom tr th {
        padding: var(--calcite-spacing-xs) var(--calcite-spacing-sm);
        vertical-align: top;
        word-break: break-word;
        font-size: var(--calcite-font-size-sm);
        font-weight: var(--calcite-font-weight-regular);
        line-height: var(--calcite-font-line-height-relative-normal);
    }