.mefc-comparison-table {
  border: 1px solid #645D40;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  overflow: hidden;
  width: 100%;
  table-layout: fixed;
}

.mefc-comparison-table caption {
  font-size: 1.5em;
  margin: .5em 0 .75em;
  font-weight: bold;
}

.mefc-comparison-table tr {
  background-color: #f8f8f8;
  border: 1px solid #645D40;
  padding: .35em;
}

.mefc-comparison-table th,
.mefc-comparison-table td {
  padding: .625em;
  text-align: center;
  border: 1px solid #645D40;
}

.mefc-comparison-table th {
  font-size: .85em;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: #f1f1f1;
  font-weight: bold;
}

/* Alternate row background */
.mefc-comparison-table tbody tr:nth-child(even) {
  background: #fafafa;
}

/* Highlighted column */
.mefc-comparison-table th.highlight,
.mefc-comparison-table td.highlight {
  background: #e8f4ff;
  font-weight: bold;
  color: #0056b3;
}

/* Responsive styles */
@media screen and (max-width: 600px) {
  .mefc-comparison-table {
    border: 0;
  }

  .mefc-comparison-table caption {
    font-size: 1.3em;
  }
  
  .mefc-comparison-table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  
  .mefc-comparison-table tr {
    border-bottom: 1px solid #645D40;
    display: block;
    margin-bottom: .625em;
  }
  
  .mefc-comparison-table td {
    border-bottom: 1px solid #645D40;
    display: block;
    font-size: .8em;
    text-align: right;
  }
  
  .mefc-comparison-table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    text-transform: uppercase;
  }
  
  .mefc-comparison-table td:last-child {
    border-bottom: 0;
  }
}
