/* Go Back Button CSS */
.go-back-container {
    margin: 20px 0;
    text-align: left;
}

.go-back-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    background-color: #2c69ef;
    padding: 10px 20px;
    transition: background-color 0.3s ease;
    border-radius: 5px;
}

.go-back-link span {
    font-size: 16px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
}

.go-back-link:hover {
    background-color: #fffc01;
    text-decoration: none;
    color: #2c69ef;
}

body {
    background-color: #a00000;
    background-image: url(K9BoxingLogo.png);
    background-repeat: no-repeat;
    background-position: center top;
    background-size: 200px 200px;
    padding-top: 140px;
    font-family: 'Georgia', serif;
    font-size: 100%;
}

/* Table Styling */
table {
    width: 90%;
    border-collapse: collapse;
    margin: 20px auto;
    background-color: rgba(0, 0, 0, 0.5);
}

th, td {
    border: 2px solid #fffc01;
    padding: 12px;
    text-align: center;
}

th {
    background-color: #2c69ef;
    color: white;
    font-size: 1.5em;
}

td {
    color: white;
    font-size: 1.2em;
}

/* Heading Styles */
h1 {
    text-align: center;
    color: white;
    font-size: 4em;
    font-family: fantasy;
}

h2 {
    text-align: center;
    margin-top: 40px;
    color: white;
}

/* Locations Section Styling */
.locations ul {
    list-style-type: none;
    padding: 0;
}

.locations ul li {
    font-size: 1.2em;
    color: white;
    text-align: center;
}

p {
    color: rgb(255, 255, 255);
    font-size: 1.5em;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: center;
}

footer {
    padding: 20px;
    text-align: center;
    font-size: 0.8em;
    background-color: #1a1a1a; /* Same as your nav/footer */
    color: #d4af37; /* Gold text */
}

/* Container for locations and affiliation */
.locations-affiliation-container {
    position: relative; /* Make this container relative to position the image inside */
    margin-top: 40px;
}

/* Affiliation Section Styling */
.affiliation {
    position: absolute; /* Position the image at the bottom left */
    bottom: 0; /* Align it to the bottom */
    left: 74px; /* Align it to the left */
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 10px;
}

/* Make the image bigger and add black background to the image */
.affiliation-img {
    width: 120px; /* Adjust the size of the image as needed (bigger than before) */
    height: auto; /* Maintain aspect ratio */
    margin-right: 15px; /* Space between the image and text */
    background-color: rgb(255, 255, 255); /* Set the background color to black */
    padding: 10px; /* Add padding around the image */
    border-radius: 5px; /* Optional: Rounded corners for the image */
}

/* Affiliation text styling */
.affiliation-text {
    font-size: 1.5em;
    color: rgb(0, 0, 0);
    font-style: italic;
    font-family: 'Georgia', serif;
}

html {
    scroll-behavior: smooth; /* Enable smooth scrolling */
}
