@charset "utf-8";

/*

   Author: Boe Mathewson
   Date:   9/13/2022
   Filename: Table_style.css
*/
h2{
   background-color:  rgb(43, 0, 92);
}
/* Table Styles */
table.programs {
   width:100%;
   border: 30px outset rgb(43, 0, 92);
   border-collapse: separate;
   font-family: Arial, Verdana, sans-serif;

}

tr {
   height: 45px;
   
}

th, td {
   vertical-align: top;
   border: 2px solid rgb(35, 32, 85);
   padding: 4px;
}
/* Table Caption Styles */
caption {
   caption-side: bottom;
}


/* Table Column Styles */
col.timeColumn {
   width:13%;
   background-color: rgb(233, 233, 233);
}
col.wDayColumns {
   width: 10%;
   background-color:rgb(221, 229, 255);
}
col.wEndColumns {
   width: 15%;
   background-color:rgb(221, 229, 255);
}


/* Table Header Styles */
thead th:first-of-type {
   background-color: rgb(36, 32, 71);
}

thead {
   color:white;
   background-color: rgb(38, 44, 124);
}

/* Table Footer Styles */

tfoot {
   color:white;
   background-color:rgb(38, 44, 124)
}


