@charset "UTF-8";

/* Base Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 20px;
}

#BIG {
    display: flex;
    justify-content: center;
    width: 100%;
}

#wrapper {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Header with Double Lines */
header {
    text-align: center;
    position: relative;
    /*padding-bottom: 20px;*/ /* Added padding to separate lines from h1 */
    margin-bottom: 30px;
    margin-bottom: .5em;
}

header h1 {
    color: #333;
    font-size: 2em;
    margin: -3em 0 0.5em 0; /* Adjusted margin to ensure space */
    display: inline-block;
    letter-spacing: .39em;
}

/* The Double Lines */
header::after {
    content: "";
    display: block;
    width: 100%;
    height: 6px; /* Total height for the double line effect */
    border-top: 2px solid #000;
    border-bottom: 2px solid #000;
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Navigation */
nav {
    width: 100%;
    margin-bottom: 30px;
}

nav .nav {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 0;
    margin: 0; /* Removed negative margin to stop overlap */
}

nav .nav a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-family: Arial, sans-serif;
}

nav .nav a:hover {
    color: #03F;
    text-decoration:underline;
}

  /* Table Styles */
    .table-container {
        width: 100%;
        max-width: 750px;
        margin: 0 auto;
        background: #ffffff;
        border-radius: 8px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        overflow: hidden;
    }

    table {
        width: 100%;
        border-collapse: collapse;
        text-align: left;
    }

    td {
        padding: 4px 10px;
        padding: 2px 10px;
        border-bottom: 1px solid #e9ecef;
        font-size: 0.8rem;
        vertical-align: middle;
    }

    table a {
        color: #3498db;
        text-decoration: none;
        font-weight: 500;
    }

    h3, h4 { text-align: center; }

    /* 2. Alternating Row Colors (Blue and White) */

tr:nth-child(even) {
    background-color: #e6f2ff; /* Pale Blue */
}
    
    /* This makes the background dark blue when hovering over a row */

tr:hover td {
    background-color: #03F; 
}

/* This makes the text white when hovering over the row */

tr:hover td a {color: #ffffff !important;}

    
    @media (max-width: 768px) {
        body { padding: 10px; }
        td { padding: 0px 8px; font-size: 0.85rem; }
    }


.Copyright { text-align: center; margin-top: 20px; font-size: 0.8rem; }

@media (max-width: 768px) 





{
    body { padding: 10px; }
    td { padding: 0px 8px; font-size: 0.85rem; }
}


header h1 {
    color: #333;
    font-size: 2em !important; 
    margin: 0em 0 0.5em 0; /* Adjusted margin to ensure space */
    display: inline-block;
    letter-spacing: .3em;
}