/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #000000;
}

h1, h2, h3 {
    margin: 0 0 10px;
}

p {
    line-height: 1.6;
    margin: 10px 0;
}

/* Header styles */
header {
    text-align: center;
    padding: 20px;
    background-color: #255,255,255;
   /* border-bottom: 1px solid #ddd; */
}

header .logo img {
    display: block;
    margin: 0 auto 10px;
}

header .site-title {
    font-size: 2em;
    color: #333;
}

header .highlight {
    color: red;
    font-weight: bold;
}

header .highlightGreen {
    color: green;
    font-weight: bold;
}

/* Navigation styles */
.navigation {
  padding: 20px;
   border-bottom: 1px solid #ddd;
    text-align: center;
}

.navigation .instruction {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #cc0000;
}

.navigation .buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.navigation .btn {
    display: inline-block;
    text-decoration: none;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.navigation .btn:hover {
    background-color: #0056b3;
}

/* Content styles */
.content {
    /*display: flex;*/
   /* flex-wrap: wrap; */
    gap: 20px;
    padding: 10px;
    justify-content: left;
    background-color: #fff;
}
.redtext {
	color:red;
}

.greentext {
	color:green;
	text-align: center;
}

.bluetext {
	color:blue;
	padding: 30px;
}

.blacktext {
	color:black;
	padding: 30px;
}

.greentext2 {
	color:green;
}

.bluetext2 {
	color:blue;
	}

.blacktext2 {
	color:black;
}
.bluetextCenter {
	color:blue;
	text-align: center;
	}
h3.bluetext {
  margin-bottom: -0.5em; /* or try 0 */
}
ul {
  margin-top: 0;
}

.document-link {
      padding: 15px;
      color: blue;
	  font-weight: bold;
      text-align: center;
      text-decoration: none;
      font-family: sans-serif;
    }

 .document-link2 {
      padding: 15px;
      color: blue;
      text-align: left;
      text-decoration: none;
      font-family: sans-serif;
    }


/*
.column {
    flex: 1 1 calc(25% - 40px);
    max-width: calc(25% - 40px);
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: #fdfdfd;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
*/