/* === Table Style === */
#schools-status-table
{
	display: table;
	width: 100%;
	border: 1px solid #CBCBCB;
}

#schools-status-table .table-header
{
	font-weight: bold;
}

#schools-status-table .row
{
	border-bottom: 1px solid #CBCBCB;
	display: table-row;
}

#schools-status-table .row:last-child
{
	border-bottom: 0px;
}

#schools-status-table .row .cell
{
	display: table-cell;
	border-bottom: 1px solid #CBCBCB;
	border-right: 1px solid #CBCBCB;
	padding: 0.3em 1em;
}

#schools-status-table .row .cell-1
{
    padding-right: 1em;
    padding-left: 0.3em;
    min-width: 9em;
}

#schools-status-table .row .cell-2
{text-align: center;}

#schools-status-table .row.close:not(.table-header) .cell-2
{
	color: red;
}

#schools-status-table .row.open:not(.table-header) .cell-2
{
	color: green;
}

#schools-status-table .row .cell:last-child
{
	border-right: none;
}

#schools-status-table .row:last-child .cell
{
	border-bottom: 0;
}

#schools-status-table .row-odd
{
	background-color: WhiteSmoke;
}

#schools-status-table .row-even
{
	background-color: #fff;
}

/* === Alert Style === */
#schools-status-alert
{
    display: block;
    text-transform: uppercase;
    text-align: center;
    padding: 0.7em;
    background: #d44751;
    font-family: 'Questrial', sans-serif;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
}