﻿@charset "utf-8";

/*
	New Perspectives on HTML5 and CSS3, 8th Edition
	Chapter 6
	Coding Challenge 1

	Author: Chris LaFleur
	Date: 10/30/23
*/

table{
	border: 20px groove gray;
	border-collapse: collapse;
}

th, td{
	border: 1px solid gray;
	padding: 5px;
	vertical-align: top;
	text-align: left;
}

caption{
	caption-side: top;
	text-align: left;
	font-size: 1.5em;
}

col#firstCol{
	background-color: yellow;
	width: 150px;
}

col#hourCols{
	width: 75px;
}

thead{
	background-color: aqua;
}