﻿.gwf-vtable-dd-defaultvalue {
    color: #000;
}
.gwf-vtable-dd-databasedvalue{
    color: red;
    font-weight:600;
}
.gwf-vtable-dd-regular{
    color:#444;
}

.gwf-vtable-div {
    padding: 0px;
    min-height: 30px;
    padding-bottom: 20px;
    margin-left: 10px;
    /*


        this space left blank





        Important max height setting: 
        Sorry, .gwf-view-vtable-div is in gwf.css
    */
    max-height: 400px; /* Fix vtable height here so that horiz scrollbar is not hopelessly far away  */
}

.gwf_variable_table {
    border: 1px solid #CCC;
    border-collapse: collapse;
}

    /* The first row of the table, styled distinctively to appear like a header */
    .gwf_variable_table tr:first-child td {
        background: lavender;
        overflow: hidden;/*new*/
        white-space: nowrap;/*new*/
    }

    /*The first column of the table, the "Control Column" containing the buttons */
    .gwf_variable_table tr td:first-child {
        width: 55px; /* fifty-five px firm!!*/
        max-width: 55px; /* fifty-five px firm!!*/
        text-wrap: none; /*new 2021-01-19*/
        white-space: pre; /*new 2021-01-19*/
        text-align: center; /*new 2021-01-19*/
    }

    .gwf_variable_table tr td {
        padding: 1px; /* ! prevent grid disappearance with zoom changes (cannot be 0)*/
    }

    .gwf_variable_table tr {
        vertical-align: top;
        background-color:#f8f8f8; /*New 2025-04-16*/
    }

    .gwf_variable_table td {
        border: 1px solid #bcd;
        margin: 0px;
    }

        .gwf_variable_table td input {
            border: 0px solid red;
            margin: 0px;
        }





.gwf_variable_table_textbox {
    background: inherit;
    border: none;
    outline: none;
    /*font-family: Arial;*/
    /*font-size: 12pt;*/
}

.gwf_variable_table_textarea {
    background: inherit;
    white-space: nowrap;
    overflow: auto;
    border: none;
    resize: vertical;
    outline: none;
    width: 100%;
    /*height is set in px inside metadata template */
}

.gwf_variable_table_control_column {
    width: 50px;
    max-width: 50px;
    min-width: 50px;
}

.gwf-round-button {
    text-align: center;
    font-family: Arial;
    font-size: 12px;
    height: 14px;
    width: 14px;
    border: none;
    background: #eef;
    color: #888;
    padding: 0px;
}

    .gwf-round-button:hover {
        z-index: 1;
        border-radius: 50%;
        background-color: white;
        border: 1px solid cadetblue;
        color: #000;
        padding: 0px;
    }

.gwf_tooltip {
    margin: 0px;
    margin-left: 1px;
    position: relative;
    display: inline-block;
}

    .gwf_tooltip .gwf_tooltiptext {
        font-family: Arial;
        font-size: 10pt;
        visibility: hidden;
        width: 120px;
        background-color: #fff;
        color: #444;
        text-align: left;
        padding: 1px 0;
        padding-left: 6px;
        border-radius: 7px;
        position: absolute;
        transform:translateX(7px) translateY(10px);
    }

    .gwf_tooltip:hover .gwf_tooltiptext {
        margin-left: 1px;
        margin-top: -12px;
        visibility: visible;
        z-index:1000;
        
    }
