﻿@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 6
   Coding Challenge 1
   
   Author:   Io Anderson   
   Date:     11/3/25
   Filename: code6-1_table.css

*/

/* Table Styles */
table {
	border: 20px groove gray;
	border-collapse: collapse;
}

th {
	border: 1px solid gray;
	padding: 5px;
	text-align: left;
}
td{
	border: 1px solid gray;
	padding: 5px;
	text-align: left;
}

caption{
	text-align: left;
	font-size: 1.5em;
}
col#firstCol{
	background: yellow;
	column-width: 150px;
}
col#hourCols{
	coloumn-width: 75px;
}
thead{
	background: aqua;
}