/*
 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
*/
    .entry-content p {
        text-align: justify;
    }

/* Basic table styling */
table {
    width: 100%; /* Makes the table span the full width of its container */
    border-collapse: collapse; /* Collapses borders between cells */
    margin-bottom: 20px; /* Adds space below the table */
}

/* Table header styling */
th {
    background-color: #f2f2f2; /* Light gray background for headers */
    padding: 10px; /* Padding inside header cells */
    text-align: left; /* Aligns header text to the left */
    border: 1px solid #ddd; /* Light gray border for headers */
}

/* Table data cell styling */
td {
    padding: 10px; /* Padding inside data cells */
    border: 1px solid #ddd; /* Light gray border for data cells */
}

/* Zebra striping for table rows (alternating row colors) */
tr:nth-child(even) {
    background-color: #f9f9f9; /* Slightly lighter gray for even rows */
}

/* Hover effect for table rows */
tr:hover {
    background-color: #e6e6e6; /* Darker gray on hover */
	
	.entry-content h2  {
    text-align: center !important;
    font-family: "Arial", sans-serif;
    font-weight: bold;
    background-color: #f9f9f9;
    color: black;
    font-size: 20px;
    padding: 5px 2px 5px 10px;
    border-left: 8px solid #ff3d00;
    border-radius: 4px 0px 0px 4px;
}
}

h1.entry-title {
    font-size: 22px;
    line-height: 1.4;
    font-family: "Anton", sans-serif;
    text-align: center;
    border: 1px solid black;
    border-radius: 6px;
    padding: 10px 2px;
    box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.60);
}