﻿/* textbox, ddls etc all have this as their base class */
.tb_Default {
    background-color: ivory;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: darkblue;
    width: 99%;
    box-sizing: border-box;
    font-size: 1.0em;
}
.tb_Clickable {
    cursor: pointer;
}
.tb_Clickable:hover {
    background-color: aliceblue;
}
.tb_SearchLocation
{
    width: 99%;
}
.input_Popup {
    cursor: pointer;
}
.input_disabled {
    background-color: lightgray;
}
.ddl_Default {
    width: auto;
}
.tb_Default90 {
    width: 90%;
    box-sizing: border-box;
}
.tb_Currency {
    width: 68%;
}
.lbl_Selectable{
    display: inline-block;
    color: darkblue;
    font-size: 1.0em;
    cursor: pointer;
    text-decoration: none;
    margin-bottom: 1px;
    background-color: lavender;
    padding: 2px;
    width: 98%;
    height: fit-content;
}
.lbl_Selectable:hover
{
    color: deepskyblue;
}
.input_WidthAuto {
    width: auto;
}
.tbWatermark {
    color: gray;
    font-style: italic;
}
.SelectedTreeNode
{
    background-color: cornflowerblue;
    color: aqua;
}
.tb_SearchPopup
{
    width: 80%;
}
.tbPopup{
    cursor: pointer;
}
.lbl_Highlight
{
    background-color: lavender;
    margin-bottom: 1px;
}
.lbl_Highlight:hover
{
    background-color: aliceblue;
}
.input_Time{
    width: 50px;
}