html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.fixTableHead {
    overflow-y: auto;
    height: 400px;
}

.fixTableHead thead th {
    position: sticky;
    top: 0;
}

.scrollable {
    overflow-y: auto;
    overflow-x: auto;
    height: 90%;
    width: 100%;
}

div.scrollable {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
}

.displayLogData {
    word-wrap: break-word;
    margin: 2px 10px;
}

.highlightlogerror {
    color: red;
    background-color: white;
}

.rowhighlightlogerror {
    background-color: white;
}

.showDetails {
    /*    border: solid black 1px;*/
    margin-left: 10px;
}

.logDataGrid {
    border: solid black 1px;
    max-width: 1500px;
}

    
.logDataGrid td {
        /*text-align: center;*/
        padding: 3px;
}

.datepicker {
    width: 120px;
}

.errorYellow{
    background-color: yellow;

}


.icon_link_tooltip {
    position: relative;
    display: inline-block;
    border-bottom: 1px dotted black;
    color: blue;
    font-size: medium;
}

.icon_link_tooltip .icon_link_tooltiptext {
    visibility: hidden;
    width: 300px;
    background-color: black;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    /* Position the tooltip */
    position: absolute;
    z-index: 1;
}




.icon_link_tooltip:hover .icon_link_tooltiptext {
    visibility: visible;
}