/* Style both tables with class 'table1' and 'table2' (unchanged) */
html, body {
    margin: 0%;
    padding: 0%;
    flex-direction: column;
    min-height: 100vh;
    display: flex;
}
body {
    background: #fcfcfc;
    font-family: Helvetica, Arial, Georgia, Tahoma, Roboto;
    font-weight: normal;
}

.advertisement {
    flex: 1;
    padding: 0.9rem;
    color: #444444;
    align-items: center;
    text-align: center;
}

.container {
    flex: 1;
    width: 60%;
    min-height: -5rem;
}
.nav-container {
    flex: 0;
    width: 100%;
    min-height: 3rem;
    background-color: #646262;
}
nav ul {
    float: right;
    list-style-type: none; /* Removes bullet points */
    padding: 0%; /* Removes default padding */
    padding-top: 0.5rem;
    margin: 0%; /* Removes default margin */
}
nav ul li {
    display: inline-block; /* Displays list items inline */
    padding-right: 1rem;
    padding-top: 0.25rem;
}
@media (max-width: 768px) {
    nav ul li {
	display: inline-block;
	padding-right: 0.3rem;
	}
}

nav ul li a {
    text-decoration: none; 
    font-weight: bold;
    color: #ffffff;
} 

nav ul li a:hover {
    font-style: italic;
    color: #cfc9c9;
}
nav ul li a:active {
    color: #3f3f47;
    text-decoration: underline;
    /* Additional link styling on hover */
}

.donate_us{
    padding-top: 0.2rem;
    margin-right: 0.3rem;
    background-color: #ffffff;
    border-radius: 0.5rem;
    box-shadow: #2b2727 0.09rem 0.09rem 0.09rem 0.09rem;
}

.donate_us a{
    color:#c42727;
    text-align: center;
    padding-top: 0.2rem;
}

.site_title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    padding-right: 0.3rem;
    text-decoration: none;
    justify-content: center;
    -webkit-justify-content: center;
}
.site_title h1 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #060101;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    -webkit-justify-content: center;
}
.site_subtitle {
    font-size: 1rem;
    font-weight: bold;
    color: #ffffff;
    text-decoration: none;
    padding-right: 0.3rem;
    padding-bottom: 0.3rem;
    justify-content: center;
    -webkit-justify-content: center;
}
.site_subtitle h3 {
    font-size: 1rem;
    font-weight: bold;
    color: #333232;
    text-decoration: none;
    text-align: center;
    justify-content: center;
    -webkit-justify-content: center;
}  
.nav-container hr {
    border: none; /* Removes default border */
    height: 0.1rem; /* Thickness of the line */
    background-color: #c42727; /* Dark color for the line */
    margin: 0; /* Removes default margin to span full width */
    width: 100%; /* Ensures it covers the full width */
    padding: 0;
    margin: 0;
}

hr {
    border: none; /* Removes default border */
    height: 0.1rem; /* Thickness of the line */
    background-color: #c42727; /* Dark color for the line */
    margin: 0; /* Removes default margin to span full width */
    width: 100%; /* Ensures it covers the full width */
    margin-bottom: 1rem; /* Optional: Adds spacing between sections */
}

.table-container {
    display: flex;
    overflow-x: auto;
    justify-content: center; /* Centers horizontally */
    -webkit-justify-content: center; /* Safari-specific prefix */
    height: 100vh; /* Full viewport height */
    width: 65vw; /* Full viewport width */
    padding-left: 16rem;
} 
@media (max-width: 768px) {
    .table-container {
        display: flex;
        overflow-x: auto;
        justify-content: center; /* Centers horizontally */
        -webkit-justify-content: center; /* Safari-specific prefix */
        height: 100vh; /* Full viewport height */
        width: 100vw; /* Full viewport width */
        padding-left: 0rem;
	}
}
table {
    flex:1;
    color: #444444;
    align-items:center;
    justify-content: center;
    -webkit-justify-content: center;
}

table a {
    color: rgb(28, 52, 234);
    text-decoration: none;
}

table a:hover {
    color: rgb(50, 5, 5);
    text-decoration: underline;
}

/* Style table cells (unchanged) */
table th, table td {
    border: none;
    text-align: left;
    font-size: 1.2rem;
    padding: 0.5rem;
}
/* Style table headers (unchanged) */
table th {
    background-color: #646262;
    color: white;
    border-radius: 0.5rem;
}
/* Style even and odd rows */
.even {
    background-color: #f2f2f2; /* Background color for even rows */
}
.odd {
    background-color: #ffffff; /* Background color for odd rows */
}
/* Style the footer */
footer {
    background-color: #646262;
    color: white;
    padding: 1rem;
}
footer .copyright {
    text-align: center;
}

.about {
    flex: 1;
    padding: 0.9rem;
    padding-bottom: 0.2rem;
    padding-top: 0%;
    color: #444444;
}

.about h2 {
    font-size: 1.3rem;
    font-weight: bold;
    color: #444444;
    text-decoration: none;
}
.contact {
    flex: 1;
    padding: 0.9rem;
    color: #444444;
}
.donate {
    flex: 1;
    padding: 0.9rem;
    color: #444444;
}
.notes{
    flex: 1;
    padding: 0.9rem;
    color: #444444;
}
#paypal-donate-button {
    background-color: yellow; /* Button background color */
    color: red; /* Button text color */
    text-align: center; /* Center button text */ 
    padding-top: 0.2rem;
    margin-right: 0.3rem;
    border-radius: 0.5rem;
    box-shadow: #2b2727 0.09rem 0.09rem 0.09rem 0.09rem;
}
