﻿
/* School Calendar */



.table-container {
  position: relative;
}
table.calendar {
width: 100%;
    height: 440px;
    text-align: center;
    margin: 0 auto;
  border-collapse: collapse;
  overflow: hidden;
  background: -webkit-linear-gradient(45deg, #f1e867, #ffcb7d);
background: linear-gradient(45deg, #f1e867, #ffcb7d);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}


th,
td {
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #000000;
}

td p.title {font-weight: bold;color:#000000}

td.title {font-weight: bold;color:#000000}

td p.subtitle {
  font-style: italic;
  font-size: 12px;
}

th {
  text-align: center !important;
}
thead th {
  background-color: #ffbc6a;
  font-weight:bold;
}
tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
tbody td {
  position: relative;
}
tbody td:hover:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -9999px;
  bottom: -9999px;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: -1;
}
