/* Limit the height of 'geometry' columns to 50px; otherwise they 
make each row arbitrarily tall
*/

td.col-geometry {
    max-height: 50px;
    overflow-x: hidden;
    overflow-y: auto;
    text-overflow: ellipsis;
    white-space: pre;
    display: block;
}

/* In general, we'll need custom canned queries to add class names and
do dynamic styling of GeoJSON shapes. See an example query in metadata.yml:recent_wells
*/
path.blm-well {
    /* CSS wants us to specify stroke and fill separately, so... */
    stroke: orange;
    fill: orange;

    stroke-width: 2;
    stroke-opacity: 0.7;

    fill-opacity: 0.5;
}


path.recent-well {
    stroke: red;
    fill: red;

    stroke-width: 3;
    stroke-opacity: 1.0;

    fill-opacity: 0.7;
}