/* AttachFile Table */
.attachmentTable {

}

.attachmentTable table {
    border: 2px solid rgb(100,135,220);  /* Light blue */
     border-collapse: collapse;
      width: 80%;
       margin-left: 20px;
}

.attachmentTable td {
    border: 1px solid lightblue;
     padding: 4px
}

.attachmentTable th {
    border: 1px solid lightblue;
     background-color: rgb(100,135,220); /* rgb(100,135,220) */
      font-weight: bold;
       padding: 4px
}

.attachmentTable tr {
    background-color: rgb(240,240,240)
}

.attachmentTable tr.altrow {
    background-color: rgb(127,127,255);
}

.attachmentTable tr:hover {
    background-color: rgb(140,170,230);
     color: white
}

