/*
Theme Name: IGE Child Theme
Theme URI:
Template: quicklaunch-parent-theme
Author: Quicklaunch
Author URI: https://www.quicklaunch.co.uk/
Description: Child theme.
Version: 1.0
*/

/* Responsive policy tables */

table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 16px;
}

table th,
table td {
  padding: 12px 14px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}

table th {
  font-weight: 700;
  background: #f5f5f5;
}

table tr:nth-child(even) {
  background: #fafafa;
}

/* Mobile table layout */
@media (max-width: 768px) {
  table,
  thead,
  tbody,
  th,
  td,
  tr {
    display: block;
    width: 100%;
  }

  table {
    border: 0;
  }

  table thead {
    display: none;
  }

  table tr {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    background: #fff;
  }

  table td {
    border: 0;
    border-bottom: 1px solid #eee;
    padding: 10px 14px;
  }

  table td:last-child {
    border-bottom: 0;
  }

  table td::before {
    content: attr(data-label);
    display: block;
    font-weight: 700;
    margin-bottom: 4px;
  }
}