html {
    position: relative;
    min-height: 100%;
}


body {
    display: flex;
    justify-content: middle;
    font-family: sans-serif;
    text-align: justify;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 100px;
    margin-top: 0;
    padding: 30px;
    min-height: 100vh;
    flex-direction: column;
    min-width: 1100px;
    max-width: 1100px;
    line-height: 1.6;


}

/* Content area (adjust as needed) */
.content {
    flex-grow: 1;
    /* Take up remaining space */
}

/* Footer styling */
.footerbar {
    position: absolute;
    width: 100%;
    bottom: 0;
    color: white;
    background-color: #202020;
    font-size: 12px;
    max-width: 1100px;
}

div.altbg1 {
    background-color: rgb(180, 220, 220);
    margin: auto;
}

div.altbg2 {
    background-color: rgb(220, 250, 245);
    padding-bottom: 20px;
}

div.white-on-dark {
    background-color: rgb(13, 17, 34);
    text-align: center;
    font-weight: bold;
    color: white;
}

.navbar {
    width: 100%;
    background-color: #555;
    overflow: auto;
    font-weight: bold;
}

/* Navbar links */
.navbar a {
    float: left;
    text-align: center;
    padding: 12px;
    color: white;
    text-decoration: none;
    font-size: 20px;
}

/* Navbar links on mouse-over */
.navbar a:hover {
    background-color: #000;
}


/* Current/active navbar link */
.active {
    background-color: #04AA6D;
}
/* for the bottom */
.navbarb {
    width: 100%;
    background-color: #555;
    overflow: auto;
    font-weight: bold;
}

/* Navbar links */
.navbarb a {
    float: left;
    text-align: center;
    padding: 10px;
    color: white;
    text-decoration: none;
    font-size: 12px;
}

/* Navbar links on mouse-over */
.navbarb a:hover {
    background-color: #000;
}

/* Add responsiveness - will automatically display the navbar vertically instead of horizontally on screens less than 500 pixels */
@media screen and (max-width: 500px) {
    .navbar a {
        float: none;
        display: block;
    }
}

.navbar2 {
    margin-left: auto;
    margin-right: auto;
    background-color: #050a29;
    overflow: hidden;
    text-align: center;
    position: center;
    min-width: 1000px;
    max-width: 1400px;
}

.horizdivs {
    margin-left: auto;
    margin-right: auto;
    background-color: #8e94b7;
    overflow: hidden;
    text-align: center;
    position: center;
    min-width: 800px;
    max-width: 900px;
}

ul.horizontal-list {
    list-style: none;
}

ul.horizontal-list li {
    display: inline-block;
    margin-right: 10px;
    /* Optional spacing between items */
}

ul.dark li {
    color: #000;
    font-family: sans-serif;
    text-align: center;
    -webkit-text-fill-color: aqua;
}


a:link {
    color: green;
    /* Unvisited link */
}

a:hover {
    color: orange;
    /* Mouse over link */
}

a:visited {
    color: lightblue;
    /* Visited link */
}

a:active {
    color: red;
    /* Active link (when clicked) */
}

.table-column-wtf {
    border-width: 1px;
    border-color: #acc1d3;
}

table {
    border-collapse: collapse;
    width: 100%;
    align-items: center;
}

th {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

td {
    padding: 15px;
    text-align: justify;
    border-bottom: 1px solid #ddd;
}

.page-title {
    text-align: center;
    display: flex;
    justify-content: center;
    font-size: xx-large;
    font-weight: bold;
    color: #000;
    padding-top: 10px;
    padding-bottom: 40px;
    align-items: center;
}




/* Rest of the code remains the same */