*{
    margin: 0;
    padding: 0;
    font-family: "Arial", Helvetica, Verdana, sans-serif;
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
        background-color: #fb9236;  /* You can change the color code to any color you prefer. */
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    color: white;
    text-align: center;
    background-color: #472e72;
 }


nav {
    
    width: 100%;
    padding-top: 0.1%;
    padding-bottom: 0.1%;
    align-items: center;
    align-content: center;
    text-align: center;

    
}
nav img {
    width: 25%;
}

.nav-links {
    flex: 1;
    text-align: center;
    width: 100%;
    display: flex;
    

}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 4px 6px;
    position: relative;

}
.nav-links ul li a{
    color: #ffffff;
    text-decoration: none;
    font-size: 1vw;
    

}

.footer-copy {
    font-size: 0.6rem;
    color: #fff;
    width: 100%;
    padding-top: 0.1%;
    padding-bottom: 0.1%;
    align-items: center;
    align-content: center;
    text-align: center;
}

.center-container{
    display: flex;
    justify-content: center;
    margin: auto;
}


.nb-container{
    align-content: center;
    image-rendering: auto;
    vertical-align:top;
    margin: auto;
    width: 50%;
    padding: 10px;
    border: 2px rgb(141, 93, 3);
}

.pw-container{
    align-content: center;
    margin: auto;
    width: 100%;
    text-align: center;
    
}

h2 {
    color: rgb(226, 37, 4);
    text-align: center;
}
ul {
    list-style-type: none;
    left: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    position: fixed;
    width: 100%;
    background-color: #472e72;
}

li {
    float: center;
    background-color:#472e72;
    color: rgb(255, 255, 255);
}

li a {
    display: block;
    color: rgb(255, 255, 255);
    text-align: center;
    padding: 10px 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 1vw;
}
li a:hover {
    color: rgb(230, 230, 230); /* Light gray for hover */
}

li a:visited {
    color: rgb(200, 200, 200); /* Medium gray for visited links */
}



.home-container {
    display: grid;
    grid-template-columns: 2fr 3fr;

}
#joblist{
    font-family: Arial, Helvetica, sans-serif;
    border-collapse: collapse;
    width: 50%;
}
    
#joblist td, #joblist th {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: center;
}
    
#joblist tr:nth-child(even){background-color: #f2f2f2;}
    
#joblist tr:hover {background-color: #ddd;}
    
#joblist th {
    padding-top: 12px;
    padding-bottom: 12px;
    background-color: rgb(226, 37, 4);
    color: white;
}
