body {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  width: auto;
}

* {
  box-sizing: border-box;
}

.flex-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.flex-item1 {
  background-color: #ffffff;
  color:#133b5c;
  border:none;
  padding-left: 20px;
  padding-top: 10px;
  font-size: 22px;
  font-weight: bold;
  text-align: left;
  justify-content: flex-start;
}

.flex-item2 {
  background-color: #ffffff;
  color:#111111;
  border:none;
  padding-left: 50px;
  padding-right: 50px;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  justify-content: center;
}

.flex-item3 {
  background-color: #ffffff;
  color:#133b5c;
  border:none;
  padding-right: 30px;
  padding-top: 10px;
  font-size: 22px;
  font-weight: bold;
  text-align: right;
  justify-content: flex-end;
}

.flex-container2 {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.flex-item4 {
	flex: 0 0 100%;
    border-top: 1px solid #000; /* Black */
    border: none;
}

.flex-container hr {
	width: 1px;
	height: 50px;
	border: none;
	background-color: #000;
}

.line {
  background-color: #ffffff;
  color: black;
  border: none;
  padding: 0;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}

table { 
    margin-left: auto;
    margin-right: auto;
}

/* On screens that are 720px wide or less, make the columns stack on top of each other instead of next to each other */
@media (max-width: 720px) {
  .flex-container {
    flex-direction: column;
  }
  .flex-item3 {
   display: none;
  }	
  hr {
        width: 300%;
        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: 100%;
    max-height: 100%;
}

.table-wrapper {
    overflow-y: scroll;
    height: fit-content;
    max-height: 66.4vh;
    margin-top: 22px;
    margin: 10px;
    padding-bottom: 20px;
}

.datatable {
  border: 1px solid #D6DDE6;
  border-collapse: collapse;
  width: 100%;
}
.datatable td {
  border: 1px solid #D6DDE6;
  padding: 4px;
}

.datatable tr td:nth-child(4) {
  text-align: center;
}

.datatable tr td:nth-child(5) {
  text-align: center;
}

.datatable tr td:nth-child(7) {
  text-align: right;
}

.datatable tr td:nth-child(8) {
  text-align: center;
}

.datatable th {
  border: 1px solid #828282;
  background-color: #3a6070;
  color: #fff;
  font-weight: bold;
  text-align: left;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 5px;
}
.datatable caption {
  font: bold 1.2em Arial, Helvetica, sans-serif;
  color: #33517A;
  text-align: left;
  padding-top: 10px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 5px;
}
.datatable tr:nth-child(odd) {
  background-color: #DFE7F2;
  color: #000000;
}
.datatable tr:nth-child(even) {
  background-color: #fff;
  color: #000000;
}


table {
    
    min-width: max-content;
    border-collapse: separate;
    border-spacing: 0px;    
    
}

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, table td {
    
    padding: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    
}

table td {
    text-align: left;
    vertical-align: middle;
    font-size: 15px;
    border: 1px solid rgb(177, 177, 177);
    padding-left: 20px;
}

.footer {
   color: #fff;
   font-size: 1.25em;
   background-color: #3a6070; /*#133b5c;*/
}

table td i {
    color: #3a6070;
	font-weight: bolder;
}

table td .vet {
     padding: 1px 6px;
}

.button {
  background-color: #ddd;
  border: 1px solid black;
  color: black;
  padding: 1px 6px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  float: right;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 10px;
}