﻿@charset "utf-8";

/*
   New Perspectives on HTML5 and CSS3, 8th Edition
   Tutorial 6
   Coding Challenge 1
   
   Author:   Kyle Snyder
   Date:     11/3/24
   Filename: code6-1_table.css

*/

table {
   border: 20px groove gray;
   border-collapse: collapse;
}

table th, table td {
   border: 1px solid gray;
   padding: 5px;
   vertical-align: top;
   text-align: left;
}

table caption {
   text-align: left;
   caption-side: top;
}

col#firstCol {
   background-color: yellow;
   width: 150px;
}

col.hourCols {
   width: 75px;
}

thead {
   background-color: aqua;
}