@charset "UTF-8";
/* main Theme */
html {
  font-family: Verdana, Tahoma sans-serif;
}

body {
  max-width: 1024px;
  margin: 0 10px;
  color: black;
  background: white;
  border-color: black;
}

img {
  max-width: 100%;
  padding: 8px;
}

blockquote {
  padding: 10px;
  background: white;
  border-style: solid;
  border-color: Orange;
  font-style: italic;
  color: gray;
}

.responsive {
  width: 100%;
  height: 250px;
}

.wrapper > * {
  color: black;
  border-radius: 5px;
  margin-bottom: 10px;
}

@media (max-width: 500px) {
  .wrapper {
    margin: 0 auto;
    font-size: 12px;
    grid-template-columns: 1fr;
    grid-template-areas: "header" "notice" "mainmenu" "content" "sidebar" "footer" "debug";
  }
}
@media (min-width: 501px) {
  .wrapper {
    outline: 2px black solid;
    max-width: 1800px;
    margin: 0 10px;
    display: grid;
    grid-gap: 5px;
    grid-template-columns: 0.75fr minmax(0, 3fr);
    grid-template-areas: "header   header" "notice   notice" "mainmenu mainmenu" "sidebar  content" "footer   footer" "debug    debug";
  }
}
.single-wrapper > * {
  color: black;
  border-radius: 5px;
  margin-bottom: 10px;
  /* debugging - colors padding areas **
  background-image:
    linear-gradient(to bottom, rgba(240, 255, 40, 1) 0%, rgba(240, 255, 40, 1) 100%),
    linear-gradient(to bottom, rgba(240, 40, 40, 1)  0%, rgba(240, 40, 40, 1)  100%);
  background-clip: content-box, padding-box;
  ** */
  /* needed for the floated layout*/
}

@media (max-width: 500px) {
  .single-wrapper {
    margin: 0 auto;
    grid-template-columns: 1fr;
    grid-template-areas: "header" "notice" "mainmenu" "content" "footer" "debug";
  }
}
@media (min-width: 501px) {
  .single-wrapper {
    outline: 2px black solid;
    max-width: 1800px;
    margin: 0 10px;
    display: grid;
    grid-gap: 5px;
    grid-template-columns: 1fr;
    grid-template-areas: "header   header" "notice   notice" "mainmenu mainmenu" "footer   footer" "debug    debug";
  }
}
.header, .footer {
  grid-column: 1/-1;
  /* needed for the floated layout */
  clear: both;
}

/* We need to set the widths used on floated items back to auto,
   and remove the bottom margin as when we have grid we have gaps. */
@supports (display: grid) {
  .wrapper > * {
    width: auto;
    margin: 0;
    padding: 10px;
  }
}
body {
  font-size: 16px;
}

.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
  /* MUST be less that 100%  in order to work! */
}

a {
  color: blue;
  /*red;*/
}

a:hover {
  color: teal;
  /*blue;*/
}

a:active {
  color: green;
}

.mainnav {
  display: flex;
  flex-flow: row wrap;
  width: 100%;
  text-align: center;
  align-items: center;
  align-self: center;
  justify-content: center;
}

.main-menu-selected {
  background-color: green;
}

.main-menu-not-selected {
  background-color: #005a8c;
}

nav a {
  margin: 5px 5px;
  padding: 5px 15px;
  background-color: #005a8c;
  border-radius: 6px 6px 6px 6px;
  text-decoration: none;
  font-size: 75%;
  color: white;
}

nav a:hover {
  background-color: #009acc;
  color: black;
}

nav a:active {
  background-color: #009acc;
  color: black;
}

.subnav {
  display: flex;
  flex-flow: row wrap;
  text-align: center;
  align-items: center;
  align-self: center;
}
.subnav button:hover {
  background-color: #009acc;
  color: red;
}
.subnav button:active {
  background-color: #009acc;
  color: black;
}
.subnav button:hover {
  background-color: #009acc !important;
  color: black !important;
}
.subnav button:disabled {
  background-color: gray !important;
  color: white !important;
}

.subnavbutton {
  margin: 5px 5px;
  padding: 5px 15px;
  background-color: #005a8c;
  border-radius: 6px 6px 6px 6px;
  border-color: transparent;
  text-decoration: none;
  font-size: 75%;
  color: white;
}

h1 {
  font-size: 2rem;
  color: #005a8c;
}

h2 {
  font-size: 1.5rem;
  color: #005a8c;
}

h3 {
  font-size: 1rem;
  color: #005a8c;
}

h4 {
  font-size: 0.75rem;
  color: #005a8c;
}

#heading-grid-not-being-used-anymore {
  display: grid;
  grid-template-columns: 100px 1fr;
  justify-content: center;
  align-self: center;
  vertical-align: middle;
  font-family: Verdana, Tahoma sans-serif;
  font-weight: bold;
}

#heading1, #heading2 {
  text-align: center;
}

#heading1 {
  font-size: 2em;
  font-style: italic;
  font-weight: bold;
  text-transform: uppercase;
  color: #005a8c;
}

#heading2 {
  font-size: 1em;
  font-weight: 600;
  color: #005a8c;
}

#heading-grad {
  background-image: linear-gradient(180deg, white, rgba(255, 165, 0, 0.65), #ffffff, #ffffff);
}

/* place holder */
.flex100px {
  flex: 0 0 100px;
}

.flex150px {
  flex: 0 0 150px;
}

.flex200px {
  flex: 0 0 200px;
}

.flex250px {
  flex: 0 0 250px;
}

.flex300px {
  flex: 0 0 300px;
}

.notice {
  font-size: 1em;
  font-style: italic;
  text-align: center;
  font-weight: bold;
  color: white;
  padding-top: 0px;
  padding-bottom: 5px;
  grid-area: notice;
  margin-inline-start: 10px;
  margin-inline-end: 10px;
  background-image: linear-gradient(90deg, #005a8c, firebrick, firebrick, firebrick, #005a8c);
}

.emptynotice {
  padding-top: 0px;
  padding-bottom: 0px;
  grid-area: notice;
}

.heading {
  grid-area: header;
  padding-bottom: 0px;
}

.footer {
  grid-area: footer;
  background-color: black;
  color: white;
  text-align: center;
  font-size: 0.75rem;
}

.form-area {
  grid-area: footer;
  /* background-color: black; */
  color: black;
  /* text-align: center; */
  font-size: 1rem;
}

.sidebar {
  grid-area: sidebar;
}

.content {
  grid-area: content;
}

.mainmenu {
  grid-area: mainmenu;
  margin-left: 10px;
  margin-right: 10px;
  padding: 10px 10px 10px 10px;
  width: auto;
  outline: 4px black double;
}

.boxtop {
  background: #e6e6e6;
  color: black;
  margin: 0;
  padding-top: 1px;
  padding-bottom: 1px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 10px;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.25rem;
}

.boxtop h3 {
  font-size: 14px;
  text-align: center;
}

.boxbot {
  display: flex;
  flex-flow: column wrap;
  text-align: left;
  text-indent: -10px;
  background: #f0f0f0;
  margin: 0;
  padding-top: 6px;
  padding-bottom: 6px;
  padding-left: 20px;
  padding-right: 10px;
  font-size: 13px;
  font-family: Arial, Helvetica, sans-serif;
  gap: 0.25em;
}

.loginmenu {
  display: flex;
  flex-flow: row wrap;
  text-align: center;
}

/* // a dummy entry for javascript DOM text replacement */
#loginbutton {
  margin: 5px 5px;
  padding: 5px 15px;
  background-color: #005a8c;
  border-radius: 6px 6px 6px 6px;
  text-decoration: none;
  font-size: 75%;
  color: white;
}

.boxbutton {
  color: blue;
  text-decoration: underline;
  cursor: pointer;
}

.boxbutton:hover {
  color: green;
}

div.loginlabel {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-gap: 20px;
}

div.loginlabel label {
  text-align: right;
}

div.loginlabel label:after {
  content: ":";
}

div.profilelabel {
  display: grid;
  grid-template-columns: max-content max-content;
  grid-gap: 5px;
}

div.profilelabel label {
  text-align: right;
}

div.profilelabel label:after {
  content: ":";
}

input {
  background: white;
}

.formcontainer {
  grid-area: footer;
}

.formlabel {
  display: grid;
  /* grid-template-columns: max-content max-content; */
  grid-template-columns: 0.25fr 0.75fr;
  grid-gap: 0px 5px;
  font-size: 0.75rem;
  line-height: 2.5em;
  padding: 0px;
}

.formlabel label {
  text-align: right;
}

.formlabel label:after {
  content: ":";
}

.radiolabel label {
  text-align: right;
}

.radiolabel label:after {
  content: ";";
}

#abutton {
  display: inline;
  margin: 0px 0px;
  padding: 2px 2px;
  background-color: #005a8c;
  border-radius: 3px 3px 3px 3px;
  text-decoration: none;
  font-size: 65%;
  color: white;
}

/* table to grid */
table {
  font-size: 0.9em;
  display: grid;
  border-collapse: collapse;
  color: black;
  min-width: 100%;
  width: auto;
  grid-template-columns: minmax(150px, 3fr) minmax(150px, 1fr);
  color: black;
}

.duestable {
  display: grid;
  grid-template-columns: 150px 75px;
  border-collapse: separate;
  color: black;
}

.posttable {
  display: grid;
  min-width: 100%;
  width: auto;
  grid-template-columns: minmax(150px, 1fr);
  border-collapse: separate;
  row-gap: 10px;
  color: black;
}

.doctable {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr 2fr 5fr;
  border-collapse: separate;
  color: black;
}

.memtablebycall {
  display: grid;
  grid-template-columns: 0.3fr 0.5fr 1.75fr;
  color: black;
}

.memtablebyname {
  display: grid;
  color: black;
  grid-template-columns: 0.3fr 1.75fr 0.5fr;
}

.memberreport {
  display: grid;
  grid-template-columns: 50% 50%;
  font-family: ui-monospace;
  font-size: 1em;
  color: black;
}

.repeatertable {
  display: grid;
  grid-template-columns: 7fr 1fr 3fr 1fr 3fr 10fr;
  color: black;
}

thead,
tbody,
tr {
  display: contents;
}

th,
td {
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 15px;
  padding-right: 15px;
}

th {
  position: sticky;
  top: 0;
  background: #005a8c;
  /*#6c7ae0;*/
  text-align: left;
  font-weight: normal;
  font-size: 1rem;
  color: white;
  position: relative;
}

th:last-child {
  border: 0;
}

.resize-handle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background: black;
  opacity: 0;
  width: 3px;
  cursor: col-resize;
}

.resize-handle:hover,
.header--being-resized .resize-handle {
  opacity: 0.5;
}

th:hover .resize-handle {
  opacity: 0.3;
}

tr:nth-child(even) td {
  background: #f8f6ff;
}

tr:nth-child(odd) td {
  background: white;
}

#ibold {
  font-style: italic;
}

#ibold:before {
  content: "“";
  /* left double quote */
}

#ibold:after {
  content: "”";
  /* right double quite */
}

.development-notice {
  color: orange;
}

.xdebug-var-dump {
  background: LemonChiffon;
  grid-area: header;
}

.xdebug-error, .xe-parse-error {
  display: inline-grid !important;
  grid-template-columns: 100% !important;
}

/* Tooltips */
/* Tooltip container */
.tooltip {
  position: relative;
  display: inline;
  /* was inline-block; */
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: #555;
  color: #fff;
  font-size: 75%;
  text-align: left;
  /* center; */
  padding: 16px 16px;
  border-radius: 8px;
  /* Position the tooltip text */
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -150px;
  /* width / 2 */
  /* Fade in tooltip */
  opacity: 0;
  transition: opacity 0.3s;
}

/* Tooltip arrow */
.tooltip .tooltiptext::after {
  content: " ";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

.nobreak {
  page-break-inside: avoid;
  break-inside: avoid;
}

.cbxlabel {
  width: 70px;
  display: inline-block;
}

.dump {
  font-family: ui-monospace;
  font-size: 1em;
}

input:read-only, text-area:read-only {
  background-color: cornsilk;
  color: black;
}

/*# sourceMappingURL=main.css.map */
