/*This is the raw data table delivered by sheetrock.js that we want to hide*/
.raw-data-table {
    display: none;
}

#rxtable  {
    table-layout: fixed;
    border-collapse: collapse;
    font-family: Menlo,Monaco,Consolas,"Courier New",monospace;
    font-size: 13px;
}

#rxtable td, #results th {
    border: 1px solid #ddd;
    padding: 8px;
  }


#results tr:nth-child(even){background-color: #f2f2f2;}

#results tr:hover {background-color: #ddd;}

#rxtable th {
padding-top: 12px;
padding-bottom: 12px;
text-align: left;
background-color: #04AA6D;
color: white;
}

/* set the Value column to wrap text to handle long DKIM records*/
table tr th:nth-child(4), table tr td:nth-child(4) {
    /*allow long text to wrap at 400px wide*/
    word-wrap: break-word;
    max-width: 400px;

}

.match {
    background-color: #04AA6D;
    color:white;
}

.nomatch {
    background-color: rgb(247, 67, 67);
    color:white;
}

.notes {
    font-size: 13px;
    color: #666;
    font-style: italic;
}