/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

/* Tables */
.wp-block-table {
	overflow-x: auto;
}

.wp-block-table th:first-of-type,
.wp-block-table td:first-of-type {
  background: var(--base-2);
}

.wp-block-table thead {
  border-bottom: 0;
  background: var(--base-2);
}

.wp-block-table td, 
.wp-block-table th {
  border: 1px solid var(--base);
  vertical-align: text-top;
}

@media screen and (max-width: 1000px) {
  .wp-block-table th:first-of-type,
  .wp-block-table td:first-of-type {
    position: sticky;
    left: 0;
	box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
    z-index: 2;
  }
  .wp-block-table .has-fixed-layout {
    width: 960px;
  }
}