/* Navbar Links */
a.navbar,
a.navbar:visited,
a.navbar:active {
    text-decoration: none;
    color: white;
    font-size: 20px;
    text-align: center;
}

a.navbar:hover {
    text-decoration: underline;
    color: #A5ACAF; /* Light gray for Yankees theme */
}

/* Navbar Table */
table.navbar {
    background-color: #0C2340; /* Navy blue background for Yankees theme */
    width: 100%;
    text-align: center;
}

td.navbar {
    text-align: center;
}

/* Navbar Button */
button.navbar {
    float: left;
    width: 100px;
    height: 30px;
    color: white;
    background-color: #0C2340; /* Navy blue */
    margin-left: 5px;
    margin-top: 5px;
    text-align: center;
}

/* Table Styling for Stats */
.statstable table, th, td {
    border: 1px solid #A5ACAF; /* Light gray border */
    border-collapse: collapse;
}
tr:nth-child(even) {
    background-color: #F2F2F2;
}

/* Centering and Page Layout */
.center {
    text-align: center;
}

/* Background and Text Styling */
html, body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
    overflow: auto;
    background-color: #FFFFFF; /* White background */
    background-image: url("/images/bg.png"); /* Keep existing background image */
    background-repeat: repeat;
    text-align: center;
}

/* Header Styling */
h2 {
    color: #0C2340; /* Navy blue for headings */
}

/* General Links */
a {
    color: #E8002F; /* Navy blue links */
}
a.hover {
    color: #6b7478; /* Light gray on hover */
}
a.visited {
    color: darkolivegreen;
}

/* Additional Table Styling */
table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
}

th, td {
    padding: 10px;
    border: 1px solid #A5ACAF; /* Light gray border */
    text-align: center;
}

th {
    background-color: #0C2340; /* Navy header */
    color: white;
}

tr:nth-child(even) {
    background-color: #F8F8F8; /* Light alternating rows */
}

.header-banner {
    width: auto;      /* Keeps the banner full-width */
    height: auto;
    max-height: 100px;
    object-fit: contain; /* Ensures the image scales without distortion */
    overflow: hidden;
}








