table.table {
  font-family: "Source Code Pro", monospace;
  table-layout: auto;
  border: 2px solid #948473;
  border-radius: 6px;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #FFF0D6;
  text-align: right;
  margin: auto;
  width: 50em;
}
table.table td, table.table th {
  border: 1px solid #948473;
  padding: 4px 4px;
}
table.table tbody td {
  font-size: 16px;
}
table.table thead {
  background: #948473;
  background: -moz-linear-gradient(top, #afa396 0%, #9e9081 66%, #948473 100%);
  background: -webkit-linear-gradient(top, #afa396 0%, #9e9081 66%, #948473 100%);
  background: linear-gradient(to bottom, #afa396 0%, #9e9081 66%, #948473 100%);
}
table.table thead th {
  font-size: 18px;
  font-weight: bold;
  color: #F0F0F0;
  text-align: left;
  border-left: 2px solid #948473;
}
table.table thead th:first-child {
  border-left: none;
}

table.table tfoot {
  font-size: 18px;
  font-weight: bold;
  color: #F0F0F0;
  background: #948473;
  background: -moz-linear-gradient(top, #afa396 0%, #9e9081 66%, #948473 100%);
  background: -webkit-linear-gradient(top, #afa396 0%, #9e9081 66%, #948473 100%);
  background: linear-gradient(to bottom, #afa396 0%, #9e9081 66%, #948473 100%);
}
table.table tfoot td {
  font-size: 18px;
}
table.table tr:first-child td:last-child {
  border-bottom-right-radius: 4px;
}
table.table tr:last-child td:first-child {
  border-bottom-left-radius: 4px;
}
