/*** Table Styles **/
.table-fill {
  background: #fee0e0;
  border-radius: 5px;
  border-collapse: collapse;
  margin: auto;
  min-width: 100%;
  padding: 5px;
  width: auto;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

thead th {
  color: white;
  font-size: 1.1em;
  font-weight: normal;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.1);
  background-color: #e32d55;
  border-bottom: 4px solid #9ea7af;
  border-right: 1px solid white;
  font-weight: 400;
  padding: 0.5em;
  text-align: center;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  vertical-align: middle;
}
thead th:first-child {
  border-top-left-radius: 5px;
}
thead th:last-child {
  border-top-right-radius: 5px;
}

tbody td {
  color: #e32d55;
  background-color: #fee0e0;
  padding: 1em;
  text-align: center;
  vertical-align: middle;
  font-weight: 100;
  text-shadow: -1px -1px 1px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(227, 45, 85, 0.2);
  border-right: 1px solid rgba(227, 45, 85, 0.2);
}
tbody td:last-child {
  border-left: 1px solid rgba(227, 45, 85, 0.2);
  border-right: 0px;
}
tbody td .title {
  color: #e32d55;
  font-size: 1.1em;
  font-weight: 400;
}
tbody:first-child {
  border-top: none;
}
tbody:last-child {
  border-bottom: none;
}
tbody:nth-child(even) td {
  background-color: #ffecf2;
}

/*# sourceMappingURL=table.css.map */
