/*     Matrix Formatting      */
input[readonly] {
    background-color : #b6b6b6;
}

body, html {
    height: 100%;
    margin: 0;
    font-family: Arial;
    overflow: auto;
}
  
  /* Style tab links */
.tablink {
    background-color: #555;
    color: white;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    font-size: 17px;
    width: 20%;
    transition: 0.3s;
}
  
.tablink:hover {
    background-color: #777;
}
  
  /* Style the tab content (and add height:100% for full page content) */
.tabcontent {
    display: none;
    padding-top: 5vh;
    padding-left: 20px;
    padding-right: 20px;
}

.tabcontent {
    animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

.boldFalse {
    font-weight: bold;
}
  
/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}