html {
    margin: 0px;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;

}

.mycenter {
    text-align: center;
}

.heading {
    display: flex;
    background-color: #232f3e;
    box-shadow: 0px 1px 2px #232f3e;

}
h1 {
    color: coral;
    font-weight: bold;

    background: transparent;
    padding: 7px;
    margin: 0;
}

h2 {
    margin: 0;
}

.outer-wrapper {
    margin: 10px;
    // margin-left: 20px;
    // margin-right: 20px;
    border: 1px solid black;
    border-radius: 4px;
    box-shadow: 0px 0px 3px rgba(0, 0, 0, 0.9);
    max-width: fit-content;
    max-height: fit-content;


}
.table-wrapper {

    overflow-y: scroll;
    overflow-x: scroll;
    height: fit-content;
    max-height: 70vh;

    /* margin-top: 22px; */

    margin: 15px;
    padding-bottom: 20px;

}


table {

    min-width: max-content;

    border-collapse: separate;
    border-spacing: 0px;

}

table caption {
    text-align: left;
    padding-bottom: 5px;
}

table th{
    position: sticky;
    top: 0px;

    background-color: #133b5c;
    color: rgb(241, 245, 179);

    text-align: center;
    font-weight: normal;
    font-size: 18px;
    outline: 0.7px solid black;
    border: 1.5px solid black;

}

table th a {
    display: block;
    text-decoration: none;
    color: rgb(241, 245, 179);
}

table th a b {
    margin-left: 5px;
    color: rgba(255,255,255,0.4);
}

thead>tr:nth-child(2) th {
    position: sticky;
    top: 33px;
}

thead>tr:nth-child(3) th {
    position: sticky;
    top: 66px;
}

table td:first-child
{
    position:sticky;
    left:0px;
    background-color:coral;
    font-size: 18px;
    z-index: 2;
}

table td:nth-child(2)
{
    font-size: 18px;
}

table th, table td {
    padding: 5px;
}

table td {
    text-align: center;

    font-size: 15px;
    border: 1px solid rgb(177, 177, 177);
    /* padding-left: 20px; */
}

/* table thead>tr:nth-child(1) th:last-child, table td:last-child */
.description_column
{
    text-align: left;
    width: 800px;
    word-wrap: break-word;
    padding-left: 10px;
    padding-right: 10px;
}
tbody tr .highlight {
    /*border: 1px solid coral;*/
}

tbody tr:hover{
    background-color:rgba(0,0,0,.075)
}

tr.table-danger {
    background-color:#f5c6cb;
}

tr.table-danger:hover {
    background-color:#f1b0b7;
}

tr.table-warning {
    background-color:#ffeeba;
}

tr.table-warning:hover {
    background-color:#ffe8a1;
}

tr.table-normal {
    background-color:white;
}

tr.table-success {
    background-color:#c3e6cb;
}

tr.table-success:hover {
    background-color:#b1dfbb;
}

.lb {
    border-left: 2px solid black;
}

.myparent2D {
    position: relative;
}

.myparent3D {
    position: relative;
}

.myparentAI {
    position: relative;
}

.mytooltip2D {
    visibility: hidden;
    display: block;
    position: absolute;
    z-index: 100;
    border: 1px;
    background-color: white;
    border: 1px solid green;
    padding: 3px;
    color: green;
    top:  -50px;
    left: 300%;
}

.mytooltip3D {
    visibility: hidden;
    display: block;
    position: absolute;
    z-index: 100;
    border: 1px;
    background-color: #555;
    border: 1px solid green;
    padding: 3px;
    color: white;
    top:   -50px;
    left:  200%;
    text-align: left;
    width: 10em;
}

.mytooltipAI {
    visibility: hidden;
    display: block;
    position: absolute;
    z-index: 100;
    border: 1px;
    background-color: #555;
    border: 1px solid green;
    padding: 3px;
    color: white;
    top:   -50px;
    left:  100%;
    width: 60em;
    text-align: justify;
}

.myparent2D:hover span.mytooltip2D {
    visibility: visible;
}

.myparent3D:hover span.mytooltip3D {
    visibility: visible;
}

.myparentAI:hover span.mytooltipAI {
    visibility: visible;
}

.mytooltip img {
    width: 400px;
    height: 200px;
    object-fit: contain;
}

.container {
    position: relative;
}
.container__menu {
    /* Absolute position */
    /* position: absolute; */
    position: sticky;
    /* left:0px; */
    /* top:0px; */
    z-index: 120;

    /* Reset */
    list-style-type: none;
    margin: 0;
    padding: 0;

    /* Misc */
    background-color: #f7fafc;
    border: 1px solid #cbd5e0;
    border-radius: 0.25rem;
    padding: 0.5rem;
}
.container__menu--hidden {
    display: none;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

li {
    float: left;
    margin-right: 10px;
}

.pnbutton {
  display: inline-block;
  padding: 8px 16px;
  color: white;
  border-radius: 6px;
}

.pnyes {
  background-color: #00B4CC;
}

.pnno {
  background-color: #cbd5e0;
}

.popupcontainer {
    display: inline-block;
}

.popupcontainer i {
    text-align: center;
    border-radius: 50%;
    border: 2px solid #00B4CC;
    /*background-color: #00B4CC;*/
    background-color: white;
    /* color: black; */
    /* font-size: 36px; */
    font-size: 15px;
    padding: 3px 3px;
    margin: 3px 3px;
    font-style: normal;
}
