/*
 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
*/


/* Make the table horizontally scrollable */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}

/* Make the table more readable */
table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; 
}

/* Make each table cell have the same width */
td, th {
  padding: 8px;
  text-align: left;
  border: 1px solid #ddd;
}

/* Responsive adjustments for small screens */
@media (max-width: 600px) {
  td, th {
    font-size: 12px; 
  }
  .table-responsive {
    margin: 0 10px; 
  }
}