* {
    font-family: sans-serif;
}
b {
    font-size: large;
}
#progress-indicators {
    background: rgba(255,255,255,0.85);
    border: 1px solid rgba(220,220,220,0.85);
    border-radius: 0.5rem;
    padding: 1rem;
    opacity: 0.0;
    transition: opacity .4s ease-in-out;
    position: relative;
    top: -4rem;
}
#progress-bar {
    width: 98%;
    height: 0.25rem;
}
#plot {
    width: 100%;
    height: 60%;
    overflow: hidden;
    background-color: white;
}
.plotly-notifier {
    visibility: hidden;
}
#options {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    background-color: lightblue;
    border-radius: 0.5rem;
    position: relative;
    top: -3rem;
}
.option {
    display: table;
    border-radius: 0.5rem;
    margin: 1rem 0rem 1rem 0rem;
    padding: 0.5rem;
    background-color: white;
}
.ui-widget {
    overflow-y: scroll;
    overflow-x: visible;
}

/* Limit the height of our PV search results, since these can be 100s of PVs */
.ui-autocomplete {
    max-height: 10rem;
}

#signal-prefs {
    border-collapse: collapse;
    width: 100%;
}
#signal-prefs button {
    width: 100%;
}

/* Styling the jqueryui tabs (used with the list of available signals */
/* that are sorted by units) so that the tabs are stacked vertically,  */
/* and their labels are horizontal. */
#pv-lists-tabs { 
    position: relative;
    height: 12rem;
    overflow: visible;
    padding-left: 8.5em; 
    border-radius: .5rem;
    border: none;
    background: transparent;
} 
#pv-lists-tabs .ui-tabs-nav { 
    position: absolute; 
    left: .2rem; 
    top: .3rem;
    bottom: .2rem;
    width: 8.5em; 
    padding: 0px;
    border-width: 0px 1px 0px 0px;
    background: transparent;
} 
#pv-lists-tabs .ui-tabs-nav li { 
    width: 100%; 
    border-bottom-width: 1px; 
    border-radius: .25rem 0px 0px .25rem; 
}
#pv-lists-tabs .ui-tabs-nav li.ui-state-active {
    background-color: #ffffff;
    border-color: #b0b0b0;
}
#pv-lists-tabs .ui-tabs-nav li.ui-state-active a {
    color: #000000;
}
#pv-lists-tabs .ui-tabs-nav li.ui-tabs-selected, 
#pv-lists-tabs .ui-tabs-nav li.ui-state-active { 
    border-right: 1px solid transparent; 
} 
#pv-lists-tabs .ui-tabs-nav li a { 
    width: 100%; 
    font-size: .85rem;
    overflow: hidden;
    padding: .2rem;
} 
#pv-lists-tabs .ui-widget-content {
    position: absolute;
    top: .35rem;
    height: 11.85rem;
    max-width: 12rem;
    padding: 0rem 0rem 0rem .3rem;
    border-width: 1px 0px 1px 0px;
    border-radius: 0px .5rem .5rem 0px;
    border-color: #b0b0b0;
}
select {
    max-width: 12rem;
    overflow: scroll;
}
select option {
    font-size: .85rem;
}
tr:nth-child(even) {
    background-color: #f2f2f2;
}
td:nth-child(even) {
    text-align: center;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none; 
}
input[type="number"] {
    -moz-appearance:textfield;
    width: 5em;
}
input[name="t-range-modifier"] {
    float: right;
    width: 8rem;
    margin: 0px 0px 0rem 1rem;
    border: 1px solid #b0b0b0;
    background-color: white;
    border-radius: .25rem;
}
.remove-signal {
    float: right;
}
#current-range-selectors td{
    text-align: left;
}