/*
    Theme Name: GSM
    Theme URI: https://www.sedgwick.com/
    Description: A child theme of Genesis Block Theme
    Author: Mike Locke
    Author URI: https://www.sedgwick.com/
    Template: genesis-block-theme
    Version: 1.0.0
*/
    
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button {
	background: #00f584;
	border: 4px solid black;
	border-radius: 10px;
	color: white;
	font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 18px;
	font-weight: 600;
	padding: 10px 10px;
	-webkit-appearance: none;
  appearance: none;
	transition: 0.2s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	font-family: "Public Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-weight: 600;
	line-height: 1.2;
  margin-top: 5px;
	margin-bottom: 5px;
}

.bold {
	font-weight: 600;
}

summary.large-text {
    font-size: 1.2em;
}

#page {
  padding-top: 0;
  /* padding: 0 8%; */
}

.footer-navigation {
    float: right;
    font-weight: 600;
}

.error-message {
  color: red;
}

.flex-container {
    display: flex;
    gap: 10px;
    /* padding: 10px;
    margin-top: 10px; */
}

.flex-column {
  flex-direction: column;
}

.flex-item {
    flex: 1;
    padding: 10px, 5px;
    /* border-radius: 8px; */
}

/* 
 * Grid Styles
 *
 * Creates a grid layout with two columns (a table replacement for modern browsers)
 *
 *   The first column takes up 1 fraction of the available space, and the second column takes up 3 fractions.
 *   The grid itself has 5px of padding around it.
 *   The gap between grid items is set to 0px
 *   Each grid item has 5px of padding for visual separation.
 *   The text within each grid item is aligned to the left and vertically aligned to the top.
 *   Odd-numbered rows have a light gray background color for better readability.
 */

.grid-container {
  display: grid;
  gap: 0px;
  padding: 5px;
}

.grid-row:nth-child(odd) {
  background-color: #f2f2f2; /* Light gray for odd rows */
}

.grid-row .grid-item:first-child {
  Font-weight: 600;
  }

.grid-row {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 0px;
  padding: 5px;
}

.grid-item {
  padding: 5px;
  text-align: Left;
  vertical-align: top;
}

/* Form Styles */
 div.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 5px;
    outline-offset: 5px;
    outline-width: 10px;
    outline-style: double;
    outline-color: black;
    padding: 10px;
    margin: 10px;
    } 
/* */

form .form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    
}

.header-text h1 {
    color: #ffffff;
}

.site-content {
	display: inline-block;
	width: 100%;
	padding: 0 0 2% 0;
	vertical-align: top;
	position: relative;
	z-index: 10;
}

.site-header,
.site-footer {
    padding: 10px 0;
    display: block;
    width: 100%;
    z-index: 100;
    color: #ffffff;
    background: #212121;
}

/* header .site-header {
    position: fixed;
    top: 0;
    left: 0;
}
*/

.site-footer {
    position: fixed;
    bottom: 0;
    left: 0;
}

.site-title a,
.main-navigation a,
.footer-navigation a {
	color: #ffffff;
}

.site-title a:hover,
.main-navigation ul li.current-menu-item a:hover,
.main-navigation ul li.current-page-item a:hover,
.main-navigation a:hover,
.footer-navigation ul li a:hover {
	color: #00f584;
  text-decoration: underline;
}

.main-navigation ul li.current-menu-item a,
.main-navigation ul li.current-page-item a {
	color: #00f584;
}

.footer-navigation {
  float: right;
}

/* Table styles */
table {
	font-size: 18px;
	margin-bottom: 1%;
	padding: 0;
	width: 100%;
}

/* table,  */
th, td {
  padding: 5px;
  text-align: left;
  vertical-align: top;
  /* 
  width: 100%;
  */
}

th {
  font-weight: bold;
}

/* Accordion Styles */

.accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 6px;
  margin-bottom: 6px;
  width: 100%;
  border: none;
  border-radius: 0;
  text-align: left;
  outline: none;
  /* font-size: 12px; */
  transition: 0.4s;
}

.active, .accordion:hover {
  background-color: #ccc;
}

.accordion:after {
  content: '\002B';
  color: #777;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

/* ::after creates a pseudo-element that is the last child of the selected element.
   In this case, it adds a plus sign (+) after the accordion button text.
*/

.active:after {
  content: "\2212";
}

.panel {
  /* padding: 0 18px; */
  background-color: white;
  max-height: 0;
  overflow:scroll;
  padding-bottom: 5px;
  transition: max-height 0.2s ease-out;
}
