/* 7th Sprint Update: 06/25/2024 (Deadline: 07/07/2024) 
    Changed color scheme from #0000cc to rgba(26, 46, 70, 1) & rgba(194, 0, 0 , 0.80)
    Added classes .background, .center-container, .home-button, .home-button:hover */

<style>
    body {
        background-color: white; /* Set your desired background color */
    }

    table {
        border-collapse: collapse;
        width: 100%;
    }
        
    table1, table2, table3, th, td {
        border: inset rgba(13, 87, 99, 1);
    }

    th, td, h1, h2, h3 {
        padding: 5px;
        text-align: center;
        width: 300px;
    }

    th {
        background-color: rgba(13, 87, 99, 0.85);
        color: white;
    }

    tr {
        background-color: white;
    }

    .accreditor {
        height: auto; /* Maintain the aspect ratio */
        width: 300px; /* Set the desired width */
    }

    .background {
        background-image: url('Watermark.png');
        background-position: center; /* Centers the background image within the container */
        background-size: cover; /* Adjusts the size of the background image to cover the entire container */
        height: 100%;
        left: 0;
        position: fixed;
        top: 0;
        width: 100%;
        z-index: -1; /* Ensure the background is behind other content */
    }

    .badge {
        border: inset rgba(13, 87, 99, 1);  
        weight: auto; /* Maintain the aspect ratio */
        width: 100px; /* Set the desired width */
        margin-left: 20px; 
        margin-right: 20px;
    }

    .center-container {
        text-align: right;
    }

    /* Style for the home button */
    .home-button {
        display: inline-block;
        background-color: black;
        color: white;
        text-decoration: none;
        padding: 5px 20px;
        border-radius: 5px;
        font-size: 20px;
        font-weight: bold;
        border: solid;
        cursor: pointer;
        transition: background-color 0.3s ease;
        border: inset rgba(13, 87, 99, 1);
    }
    
    .home-button:hover {
        background-color: rgba(13, 87, 99, 1); /* Darker shade of the primary color on hover */
    }

    /* Logo styling */
    .logo {
        background-color: white; /* Background color of the logo */
        border: inset rgba(13, 87, 99, 1); /* Border color */
        border-radius: 5px; /* Rounded corners */
        color: rgba(13, 87, 99, 1); /* Change the color as needed */
        font-size: 50px;
        font-weight: bold;
        letter-spacing: 20px;
        padding: 10px;
        text-align: center;
        text-transform: uppercase;
        word-spacing: 15px;
    }

    .underline {
        text-decoration: underline;
    }
</style>