#overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}
#overlayBg {
    position: fixed; /* Sit on top of the page content */
    width: 50%; /* Full width (cover the whole page) */
    height: 50%; /* Full height (cover the whole page) */
    top: 0; 
    left: 0;
    right: 0;
    bottom: 0;
    background-color: white;
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    transform: translate(50%,50%);
    -ms-transform: translate(50%,50%);
    cursor: auto;
    text-align: center;
}
#overlayButton {
    position:absolute;
    top: 30px;
    left: 40px;
    cursor: pointer;
    z-index: 2;
}

.noneSelectable {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

.titleTbl {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 47%;
    border: none;
    background-color: #222326;
}

.bodyCls {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 50%;
}

table, th, td {
    text-align: center;
    border:2px solid black;
    border-collapse: collapse;
}

.textFieldWithDelButton {
    width: calc(100% - 40px);
}

.smallPadding {
    padding-top:5px;
    padding-right:5px;
    padding-bottom:5px;
    padding-left:5px;
}

.ignore-css{all:unset;}