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