/*
  Triagonal Software web pages style sheet.
  Created by: P.M.Hounslow
  Created:    1997-09-17 20:45
  Modified:   2024-10-12 11:00
*/

h1 {
  color: red;
  text-align: center;
  font-style: italic;
}

h2 {
  text-align: center;
}

a:link {
  color: red;
  text-decoration: none;
}

a:visited {
  color: red;
  text-decoration: none;
}

a:active {
  color: red;
  text-decoration: none;
}

address {
  text-align: right;
}

.centre {
  text-align: center;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

div.withMargin {
  margin-left: 10px;
  margin-right: 10px;
}

div.indent {
  margin-left: 20px;
}

table
{
    margin-left: 5%;
    margin-right: 5%;
    border: none;
    border-color: #004040;
    border-width: 1;
}

table.wide {
    margin-left: 0%;
    margin-right: 0%;
  width: 100%
}

table.narrow {
  margin-left: auto;
  margin-right: auto;
}

.menu {
  text-align: center;
  text-decoration: none;
  background: #f4fafa;
  color: #004040;
}

.bar {
    text-decoration: none;
    background: #004040;
    width: 1px;
    color: #000000;
    height: 1px;
}

th
{
    text-align: left;
    vertical-align: top;
}

td
{
    vertical-align: top;
}

caption
{
    vertical-align: top;
    white-space: nowrap;
}

dt {
  font-weight: 700;
}
dd {
  margin-bottom: 0;
  margin-left: 20px;
}

.nav-pills {
  --bs-nav-pills-link-active-color: #fff;
  --bs-nav-pills-link-active-bg: red;
}

.nav-link {
  --bs-nav-link-color: red;
  --bs-nav-link-hover-color: red;
}

.disabled {
  color: gray;
}

/* Back to top button */
#topBtn {
  display: none; /* Hidden by default */
  position: fixed; /* Fixed/sticky position */
  bottom: 20px; /* Place the button at the bottom of the page */
  right: 30px; /* Place the button 30px from the right */
  z-index: 99; /* Make sure it does not overlap */
  border: none; /* Remove borders */
  outline: none; /* Remove outline */
  background-color: red; /* Set a background color */
  color: white; /* Text color */
  cursor: pointer; /* Add a mouse pointer on hover */
  padding: 15px; /* Some padding */
  border-radius: 10px; /* Rounded corners */
  font-size: 18px; /* Increase font size */
}

#topBtn:hover {
  background-color: #555; /* Add a dark-grey background on hover */
}