@charset "utf-8";
/* CSS Document */

/* Centering container */
div.center {
  text-align: center;
  padding: 1rem;
  max-width: 1200px;
  margin: auto;
}

/* Base layout */
html {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #f9f9f9;
}

/* Headings */
h1, h2, h3 {
  font-weight: bold;
  margin: 1rem 0;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  margin-top: 12px;
}

/* Link styles */
a:link,
a:visited {
  text-decoration: none;
  color: inherit;
}

a:hover {
  text-decoration: underline;
}

/* Tables */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

td {
  padding: 0.5rem;
  word-break: break-word;
}

/* Table heading row */
td.t2 {
  font-weight: bold;
  background: #4F4F4F;
  text-align: center;
  vertical-align: middle;
  color: #FFFFFF;
  padding: 0.75rem;
}

/* Table row styles */
td.t1_left,
td.t1_right,
td.t1_centre,
td.t1_split {
  background: #FFFFFF;
  color: #515151;
  padding: 0.5rem;
  vertical-align: middle;
}

td.t1_left { text-align: left; }
td.t1_right { text-align: right; }
td.t1_centre, td.t1_split { text-align: center; }

td.t4_left,
td.t4_right,
td.t4_centre,
td.t4_split {
  background: #C0C0C0;
  color: #515151;
  padding: 0.5rem;
  vertical-align: middle;
}

td.t4_left { text-align: left; }
td.t4_right { text-align: right; }
td.t4_centre, td.t4_split { text-align: center; }

/* Optional additional row classes */
td.t5_left,
td.t5_right,
td.t5_centre,
td.t6_left,
td.t6_right,
td.t6_centre {
  color: #515151;
  padding: 0.5rem;
}

td.t5_left, td.t6_left { text-align: left; background: #fff; }
td.t5_right, td.t6_right { text-align: right; }
td.t5_centre, td.t6_centre { text-align: center; }
td.t6_left, td.t6_right, td.t6_centre { background: #C0C0C0; }

/* Styled button */
.my-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  text-align: center;
  text-decoration: none;
  border: 2px solid #3498db;
  border-radius: 5px;
  background-color: #3498db;
  color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-weight: bold;
}

.my-button:hover {
  background-color: #fff;
  color: #3498db;
}

/* Font Awesome buttons (optional social links) */
.fa {
  padding: 1rem;
  font-size: 2rem;
  width: 50px;
  text-align: center;
  margin: 0.3rem;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.fa-twitter {
  background: #55ACEE;
  color: white;
}

/* Embedded iframes */
iframe {
  width: 100%;
  border: 1px solid #000;
}

.iframe-content {
  font-size: 100%;
}

@media screen and (min-width: 768px) {
  .iframe-content {
    font-size: 75%;
  }
}

/* Responsive styles */
@media only screen and (max-width: 768px) {
  html {
    font-size: 15px;
  }

  td.t2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  table {
    font-size: 0.95rem;
  }

  .my-button {
    width: 100%;
    max-width: 300px;
    box-sizing: border-box;
  }

  td, th {
    display: block;
    text-align: left !important;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}

/* Larger screens */
@media only screen and (min-width: 992px) {
  html {
    font-size: 16px;
  }
}
