.header-img {
    display: block;            /* Makes the image a block element */
    margin-left: auto;         /* Centers horizontally */
    margin-right: auto;        /* Centers horizontally */
    width: 30%;                /* Set width to 50% */
    height: auto;              /* Keep aspect ratio intact */
    display: block;
}

.second-header {
    text-align: center;        /* Centers the text */
    font-size: 4em;            /* Makes the font much larger */
    margin-top: 50px;          /* Adds some space above the header */
    font-weight: bold;  
    color:royalblue;      /* Makes the text bold */
}
.additional-text {
    /* Your original styles (improved) */
    text-align: center;
    font-size: 1em;
    margin: 30px auto; /* Shorthand for top/bottom + left/right margins */
    line-height: 1.6;
    font-weight: bold;
    width: 70%;
    font-family: 'Roboto', sans-serif;
    
    /* New box styles */
    background-color: #f8f9fa;  /* Light gray background */
    border: 2px solid #dee2e6;  /* Subtle border */
    border-radius: 8px;          /* Rounded corners */
    padding: 20px;               /* Inner spacing */
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); /* Soft shadow */
}
/* Add some padding to the body to make it look cleaner */
body {
    padding-top: 20px;         /* Space above the image */
    font-family: 'Roboto', sans-serif;
}
a {
    color: #6699FF; /* Light blue */
    text-decoration: none; /* Removes underline if desired */
}

a:hover {
    color: #99BBFF; /* Even lighter blue on hover */
}
/* Main content styling */
main {
    padding: 20px;
}

/* Table styling */
table {
    margin: 0 auto;
    width: 80%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-size:1em;
    font-weight:bold;
    font-family: 'Roboto', sans-serif;
}

th, td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

th {
    background-color: royalblue;
    color: white;
}


#data-table tr:nth-child(odd) {
    background-color: lightgray; /* Light gray for odd rows */
}

#data-table tr:nth-child(even) {
    background-color: #ffffff; /* White for even rows */
}