* {
    box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
    float: left;
    width: 50%;
    padding: 10px;
    height: 300px; /* Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

.notie-container {
  box-shadow: none;
}

.table-fit {
    width: 400px!important;
  }

.table-wrapper {
    border-radius: 1px;
    overflow-y: auto;
    overflow-x: auto;
    border-collapse: collapse;
    width: 100%;
    display: flex;
    flex-flow: column;
    text-align: left;

  }
  
.container {
     margin-top: 50px;
     margin-bottom: 50px;
     background: white;
     border-radius: 8px;
     padding: 0px;
}
  
tr {
   font-size: 0.9rem;
    line-height: 25px;
    padding: 0px;
    font-weight: 400;
    font-family: "Nunito", sans-serif;
 
}
  
td, th {
   display: table-cell;
    text-align: center;
}


/* Trying to limit the size and allow scroll DAN 6/2/2025 */

.tableD, .tdD {
  border: 1px solid black;
}
.thD {
  border-left: 1px solid black;
}

.tableD {
    border-collapse: collapse;
    width: 100%;
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 400px;
    
}

.theadD {
    padding-right: 13px;
    flex: 0 0 auto;
}

.tbodyD {
    flex: 1 1 auto;
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
}

.trD {
    width: 100%;
    display: table;
    table-layout: fixed;
}
/* End of size and scroll */



#thead_st {
  background-color: #F6CE52;
  border: 3px solid #F6CE52;
  color: white;
}

.thead-row {
    line-height: 20px;
    font-weight: 100;
    color: black;
}

.tdetail-row {
    color: black;
}


.trow {
    transition: transform .2s;
}
  
.trow:hover {
    cursor:pointer; 
    transform: scale(1.00);
    background:#ccc;
    color:#fff;
}

/* ------------------------- */
/*This code is styling the HTML elements in the document. Here is a breakdown of
  what each part of the code does:*/
<style>
 * {
     margin: 0;
     padding: 0;
 }

body {
    background: white;
}

.container {
    border: 1px solid grey;
    margin: 1rem;
}

[data-tab-info] {
    display: none;
}

.active[data-tab-info] {
    display: block;
}

/* used for the tabs */
.tab-content {
    margin-top: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
}

.tabs {
    border-bottom: 1px solid grey;
    background-color: rgb(255, 255, 255);
    font-size: inherit;
    font-family: inherit;
    color: inherit;
    display: flex;
    margin: 10px;
}

.tabs span {
    background: rgb(0, 253, 251);
    padding: 10px;
    border: 1px solid rgb(255, 255, 255);
    font-size: inherit;
    font-family: inherit;
}

.tabs span:hover {
    background: rgb(74, 99, 225);
    cursor: pointer;
    color: white;
}

/*  pop-up */

{box-sizing: border-box;}

/* Button used to open the contact form - fixed at the bottom of the page */
.open-button {
    background-color: #555;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    opacity: 0.8;
    position: fixed;
    bottom: 23px;
    right: 28px;
    width: 280px;
}

/* The popup form - hidden by default */
.form-popup {
    display: none;
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px;
    background-color: lightblue;
    border: 3px solid #f1f1f1;
    z-index: 9;
    max-width: 1400px;
    max-height: 1300px;
    margin-top: 100px;
    margin-left: 100px;

}

/* Add styles to the form container */
.form-container {
    max-width: 300px;
    padding: 10px;
    background-color: blue;
}

/* Full-width input fields */
.form-container input[type=text], .form-container input[type=password] {
    width: 100%;
    padding: 15px;
    margin: 5px 3px 22px 3px;
    border: none;
    background: #f1f1f1;
}

/* When the inputs get focus, do something */
.form-container input[type=text]:focus, .form-container input[type=password]:focus {
    background-color: #ddd;
    outline: none;
}

/* Set a style for the submit/login button */
.form-container .btn {
    background-color: #04AA6D;
    color: white;
    padding: 16px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom:10px;
    opacity: 0.8;
}

/* Add a red background color to the cancel button */
.form-container .cancel {
    background-color: red;
}

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
    opacity: 1;
}

#fixButtonDiv {
  position: fixed;
  bottom: 0;
  right: 0;
  height: 50px;  
  width: 50px;
}

* {
    box-sizing: border-box;
}

#workCategoryListUL {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#workCategoryListUL li a {
    border: 1px solid #ddd;
    margin-top: -1px; /* Prevent double borders */
    background-color: #f6f6f6;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    color: black;
    display: block
}

#workCategoryListUL li a:hover:not(.header) {
    background-color: #eee;
}

.listUL {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.listUL li a {
    border: 1px solid #ddd;
    margin-top: -1px; /* Prevent double borders */
    background-color: #f6f6f6;
    padding: 12px;
    text-decoration: none;
    font-size: 18px;
    color: black;
    display: block
}

.listUL li a:hover:not(.header) {
    background-color: #eee;
}


/* Dropdown Button */
.dropbtn {
  background-color: #04AA6D;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

/* Dropdown button on hover & focus */
.dropbtn:hover, .dropbtn:focus {
  background-color: #3e8e41;
}

/* The search field */
#myInput {
  box-sizing: border-box;
  background-image: url('searchicon.png');
  background-position: 14px 12px;
  background-repeat: no-repeat;
  font-size: 16px;
  padding: 14px 20px 12px 45px;
  border: none;
  border-bottom: 1px solid #ddd;
}

/* The search field when it gets focus/clicked on */
#myInput:focus {outline: 3px solid #ddd;}

/* The container <div> - needed to position the dropdown content */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f6f6f6;
  min-width: 230px;
  max-width: 430px;
  border: 1px solid #ddd;
  z-index: 1;
  margin-left: 2em;
}

/* Links inside the dropdown */
.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #f1f1f1}

/* Show the dropdown menu (use JS to add this class to the .dropdown-content container when the user clicks on the dropdown button) */
.show {display:block;}

