@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 6
   Review Assignment

   Tables Style Sheet
   Author: 
   Date:   

   Filename:         dlr_tables2.css

*/

/* Table Styles */
table.programs {
   width: 100%;
border: 15px outset rgb(151,151,151);
border-collapse: collapse;
font-family: arial, Verdana, sans-serif;
}
tr {
height: 25px;
}
th {
border: 1px solid gray;
align-items: center;
padding: 5px;
}

td{
   border: 1px solid gray;
   vertical-align: top;
   align-items: center;
   padding: 5px;
}
/* Table Caption Styles */
caption{
   caption-side: bottom;
   text-align: center;
}
/* Table Column Styles */
col.timeColumn {
   column-width: 10%;
background: rgb(215,205,151);
}
col.wDayColumns{
   column-width: 11%;
background: rgb(236,255,211);
}
col.wEndColumns{
   column-width: 17%;
background: rgb(255,231,255);
}
/* Table Header Styles */
thead {
   color: white;
background: rgb(105,177,60);
}
thead  th:first-of-type{
 color: white;
background: rgb(153,86,7);
}
thead th:nth-of-type(7){
background: rgb(153,0,153);


}
thead th:nth-of-type(8){


   background: rgb(153,0,153);

}

/* Table Footer Styles */

tfoot{
   color: white;
background: black;
}





