/* includes alternating gray and white with on-hover color */
img {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 5px;
  width: 550px;
}
.cplot {
    width: 80%; /* or any specific value you want */
    height: auto; /* maintain aspect ratio */
    border: none; /* example of a different border */
    /* Add other specific styles here */
}
div { 
  margin: auto; 
display: flex;
justify-content: center;
}

.comphead {color:silver; border-collapse: collapse;border: 1px;width: 60%;}
.comphead tr td {font-size:18px;}
.mystyle {
    font-family: Arial;
    border-collapse: collapse; 
    border: 1px solid silver;
 width:100%;
}


.mystyle tr th {
    padding: 5px;
    text-align: center;
    font-size: 13;
    border: none;
    border-bottom: 2px solid silver;
}
.mystyle td {
    padding: 5px;
    text-align: right;
    border: none;
}

.mystyle tr:nth-child(even) {
    background: #dbeef7;
}

.mystyle tr:hover {
    background: whitesmoke;
    cursor: pointer;
}
