/*
   Mobile Dent Tech Style Sheet
   Author: Jody Olson
   Date:   22 April 2016

   Filename: table.css
   Supporting files: 
*/



/*Table Main Body Border Syles*/

thead th {
    border-top: 2px solid black;
}
thead th:first-of-type {
    border-left: 2px solid black;
}
thead th:last-of-type {
    border-right: 2px solid black;
}

tfoot td {
    border-bottom: 2px solid black;
}
tfoot td:first-of-type {
    border-left: 2px solid black;
}
tfoot td:last-of-type {
    border-right: 2px solid black;
}

tbody tr:first-of-type {
    border-top: 2px solid black;
}
tbody tr:last-of-type {
    border-bottom: 2px solid black;
}
tbody tr th {
    border-left:  2px solid black;
    border-right:  2px solid black;
}
tbody tr td:last-of-type {
    border-right:  2px solid black;
}

/*Column Size and Color*/

.firstColumn {
    width: 20%;
}
.secondColumn {
    background-color: lightblue;
    width: 10%;
}
.thridColumn {
    background-color: antiquewhite;
    width: 10%;
}
.fourthColumn {
    background-color: lightblue;
    width: 10%;
}
.fifthColumn {
    background-color: antiquewhite;
    width: 10%;
}

/*Row Size and Color*/

thead, tfoot {
    height: 50px;
}
tbody tr {
    height: 30px;
}
tbody th {
    background-color: antiquewhite;
}

/*Caption Syles*/

caption {
    font-size: 2.5em;
    color: white;
    letter-spacing: 2px;
    font-family: 'Lucida Handwriting', 'Lucida Sans Unicode', 'Arial Black', 'Trebuchet MS';
}
