@charset "utf-8";

/*
   Final Project

   Tables Style Sheet
   Author: Alyssa Milinkovich
   Date:   12/5/2023
	
	Style file for my table
   Filename:   am_table.css

*/

/* Table Styles */

table.movieTable {
	background: white;
	border: 10px outset rgb(100, 57, 56);
	border-collapse: collapse;
	font-size: 0.75em;
	width: 100%;
}


/* Table Cell Styles */

table.movieTable th, table.movieTable td {
	border: 1px solid gray;
	padding: 5px;
	vertical-align: top;
}





/* Row Group Styles */

table.movieTable thead {
	background: rgb(91, 34, 32);
	color: white;	
}

table.movieTable tfoot {
	background: black;
	color: white;
	text-align:center;
}

table.movieTable thead tr {
	height: 30px;
}

table.movieTable tbody tr {
	height: 40px;
}

/* Column Group Styles */

col#firstCol {
	background: rgb(222, 183, 182);
	width: 16%;
}	
