@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

body {
  font-family: "Lato", sans-serif;
  color: #323233;
  margin: 0;
}


/* Navigation */
nav {
  width: 100%;
  background-color: #e6eaec;
  display: flex;
  align-items: center;
}
nav a {
  color: #0e4972;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.875rem;
  padding-left: 6rem;
  text-decoration: inherit;
}

/* Main Section */
main {
  width: 100%;
  min-height: 100vh;
  margin-top: 1rem;
  box-sizing: border-box;
}
main article {
  color: #2f4e4e;
  padding: 2rem;
  margin: 3rem 0;
}
main article h2 {
  color: #0e4972;
  font-weight: 600;
  font-size: 2.25rem;
  margin: 0;
}

main article h3 {
  
  font-weight: 500;
  font-size: 2rem;
  margin: 0;

}


main article h4 {
  
  font-weight: 500;
  font-size: 1.75rem;
  margin: 0;

}

/* Row and Column for Grid Layout */
.row {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap; /* Prevents wrapping on larger screens */
}
.column {
  flex: 1 1 45%; /* 45% width by default, leaving room for spacing */
  margin-right: 20px;
}

/* Remove the last column's margin to keep alignment */
.column:last-child {
  margin-right: 0;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
  .row {
    flex-wrap: wrap; /* Enable wrapping on smaller screens */
  }
  .column {
    flex: 1 1 100%; /* Stack columns vertically on smaller screens */
    margin-bottom: 20px;
  }
  .column:last-child {
    margin-right: 0; /* Remove extra margin on the last item */
  }
}

/* Ensure images are responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Header */

header {
  width: 100%;
  background-color: #0e4972;
  color:#e6eaec;
  display: flex;
  flex-direction: row;
  position: relative;
}
header .icon {
  padding-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}
header .icon img {
  width: 4rem;
  z-index: 50;
  position: relative;
  height: auto;
  max-width: 100%;
  display: block;
}
header .heading {
  margin-top: auto;
  margin-bottom: auto;
}
header .heading h1 {
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 2rem;
  overflow-wrap: normal;
  word-break: normal;
  margin: 0;
}





/*Styles 2025*/

#Links a {
  display: block; /* Makes each link a block-level element */
  margin-bottom: 10px; /* Adds spacing between links */
  text-decoration: none; /* Optional: Remove underline for a cleaner look */
}

#Program  {
border: 2px solid #0e4972;
border-radius: 8px;
padding: 10px;
margin: 20px;
overflow: hidden; /* Prevents table from overflowing */
}

.table-container {
width: 100%;
overflow-x: auto; /* Enables horizontal scrolling if needed */
}

table {
width: 100%;
border-collapse: collapse;
font-size: 16px;
background-color: #f9f9f9;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

table, th, td {
border: 1px solid #ddd;
}

th, td {
padding: 12px;
text-align: left;
white-space: nowrap; /* Prevents text from wrapping */
}

th {
background-color: #0e4972;
color: white;
font-weight: bold;
}

tr:nth-child(even) {
background-color: #ffffff;
}

tr:hover {
background-color: #e6eaec;
}

    #buttons {
    display: flex;
    flex-direction: row; /* Makes the buttons stack horizontally */
    flex-wrap: wrap;    /* Allows wrapping to the next row if necessary */
    gap: 10px;          /* Adds space between buttons */
    margin-top: 20px;
}
.button {
    display: inline-block;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    background-color: #0e4972; /* Green background color */
    color: white;             /* White text */
    border: none;
    border-radius: 5px;
    font-size: 16px;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #e6eaec;
    color: black;
}




.banner {
    width: 100%;               
    background-color: #ffffff;  
    padding: 2px;             
    position: fixed;           
    bottom: 0;                 
    left: 0;                   
    z-index: 1000;              /* Ensure it stays on top of other elements */
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2); /* Shadow at the top for depth */
    display: flex;            
    justify-content: center;    
    gap: 10px;                 
}

/* Styling for the buttons container */
.banner .row {
    display: flex;              
    justify-content: center;    
    gap: 10px;                
}

body {
    margin: 0;                  /* Remove default margin */
    padding-bottom: 60px;       /* Space for the fixed banner */
 
}

.horizontal-image img {
width: 100%; /* Ensures the image fills the entire width */
height: auto; /* Maintains aspect ratio */
display: block; /* Removes extra space below the image */
}


.contact-links {
    list-style: none;
    padding: 0;
}
.contact-links li {
    margin: 10px 0;
}
.contact-links a {
    text-decoration: none;
    color: #0e4972;
    font-size: 18px;
}
.contact-links a i {
    margin-right: 8px;
}


#PrintablesButton .button {
    display: block;
width: fit-content; /* Adjusts button width to content */
padding: 10px 15px;
margin: 20px 0; /* Adds spacing between buttons */
text-align: center;
margin-left: 100px;
}

a {
   
    color: #0e4972;
    
    }

    a:active {
color: black;
}
