:root {
  --grid-gap: 5px;
  --padding: 5px;
  --left-column-width: 200px;
  --rigth-column-width: 100px;
  --color1: #80ccff;
  --color_tab: white;
   --color_tabg: #80ccff;
 --border-radius: 10px;
  --border-width: 2px;
  --select: #F5F5F5;
}

#MyTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: white;
  font-size: 18px;
  overflow-x: hidden;
  overflow-y: scroll;  word-wrap: break-word;
}




#MyTable0 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: white;
  font-size: 18px;

}

#MyTable th,
#MyTable td {
  
  border-collapse: separate;
  border-spacing: 0;
  padding: var(--padding);
  border-width: 0px;
  border-color: var(--color1);
  
    text-align: center;
  padding: 0px;
  border: 1px solid #ddd;
 /*  white-space:nowrap; 
  border:1px solid grey;*/

}
#MyTable th { color: var(--color_tab);}
#MyTable td { color: var(--color_tabg);}
#MyTable tr:hover { background-color: var(--select);}
	
#MyTable th {
  background-color: var(--color1);
  text-align: center;
  font-weight: bold;
  position: sticky;
  top: 0;
}
#myTable thead { position: sticky; top: 0; z-index: 1; background-color:grey !important;
  border-spacing: 0px;
}
#MyTable th.wide {
  width: 100%;
}

#MyTable .right {
  text-align: right;
 
  
  }




body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}

/* Set a style for all buttons */
button {
  background-color: #04AA6D;
  color: white;
  padding: 14px 20px;
  margin: 8px 0;
  border: none;
  cursor: pointer;
  width: 100%;
  opacity: 0.9;
}

button:hover {
  opacity:1;
}

/* Float cancel and delete buttons and add an equal width */
.cancelbtn, .deletebtn {
  float: left;
  width: 50%;
}

/* Add a color to the cancel button */
.cancelbtn {
  background-color: #ccc;
  color: black;
}

/* Add a color to the delete button */
.deletebtn {
  background-color: #f44336;
}

/* Add padding and center-align text to the container */
.container {
  padding: 16px;
  text-align: center;
}

/* The Modal (background) */
.modal {
  color:blue;	
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: #474e5d;
  padding-top: 50px;
}

/* Modal Content/Box */
.modal-content {
  background-color: #fefefe;
  margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
  border: 1px solid #888;
  width: 80%; /* Could be more or less, depending on screen size */
}

/* Style the horizontal ruler */
hr {
  border: 1px solid #f1f1f1;
  margin-bottom: 25px;
}
 
/* The Modal Close Button (x) */
.close {
  position: absolute;
  right: 35px;
  top: 15px;
  font-size: 40px;
  font-weight: bold;
  color: #f1f1f1;
}

.close:hover,
.close:focus {
  color: #f44336;
  cursor: pointer;
}

/* Clear floats */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

/* Change styles for cancel button and delete button on extra small screens */
@media screen and (max-width: 300px) {
  .cancelbtn, .deletebtn {
     width: 100%;
  }
}