/* Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-family: "Times New Roman", Times, serif;
}

header, footer {
    display: flex;
    align-items: stretch;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
header {
    height: 60px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex-grow: 1;
    min-height: 100vh;
}

a, p, td {
    font-weight: 500 !important;
    font-style: normal !important;
}
/* End ~ Global */


/* Header & Footer */
.announcement-bar {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #F9F9F9;
    position: relative;
    overflow: hidden;
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
}
.announcement-bar .carousel {
    position: relative;
    width: 100%;
}
.announcement-bar .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}
.announcement-bar .carousel-item.active {
    position: relative;
    opacity: 1;
}
.announcement-bar .carousel-item p {
    width: 100%;
    text-shadow: -0.1px 0 black, 0 0.1px black, 0.1px 0 black, 0 -0.1px black;
}
.announcement-bar .carousel-controls {
    display: flex;
}
.announcement-bar .carousel-controls.prev-arrow {
    justify-content: flex-start;
}
.announcement-bar .carousel-controls.next-arrow {
    justify-content: flex-end;
}
.announcement-bar .carousel-controls .announcement-prev-button,
.announcement-bar .carousel-controls .announcement-next-button {
    flex-basis: auto;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    padding-left: 7px;
    padding-right: 7px;
}
.announcement-bar .carousel-controls .announcement-prev-button img,
.announcement-bar .carousel-controls .announcement-next-button img {
    height: 10px;
    width: auto;
}

.header-container, .footer-container {
    display: flex;
    align-items: center;
    background-color: #222222;
    width: 100%;
    flex-grow: 1;
    flex-direction: column;
}
.footer-container {
    display: grid;
    grid-template-rows: auto min-content;
    color: white;
}

.header-container .main-header {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
}

.header-container a {
    font-size: 18px;
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    color: white;
    text-decoration: none; /* Removes the underline */
}

.header-container-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    height: 100%;
}

.header-container-right a {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
}
.footer-container a {
    position: relative;
}

.footer-container a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: -2px;
    left: 50%;
    background-color: #988863;
    transition: all 0.2s ease-in-out;
}
.footer-container a:hover::after {
    width: 100%;
    left: 0;
}
.footer-container .footer-logo-no-hover::after {
    content: none;
}
.footer-container .footer-logo-box {
    order: 1;
    display: flex;
    height: 75px;
    width: auto;
    margin: auto;
    margin-left: 0;
}
.footer-container .footer-logo {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.footer-container .footer-links-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding-left: 10px;
    padding-right: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
}
.footer-container .partner-container {
    order: 2;
}
.footer-container .partner-logo-container {
    width: 75px;
    height: 75px;
    margin: auto;
    margin-bottom: 10px;
}
.footer-container .partner-logo-container img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.footer-container .social-media-links {
    order: 3;
    display: flex;
    align-items: center;
    margin-left: auto;
    gap: 20px;
}
.footer-container .social-media-icon {
    height: 30px;
    width: 30px;
}
.footer-container .social-media-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.footer-container .footer-legal-container {
    height: 100%;
}
.footer-container .footer-bar {
    height: 2px;
    width: 100%;
    background-color: #FFFFFF;
}
.footer-container .footer-legal {
    padding: 10px;
}
.footer-container .footer-legal-bottom-container {
    display: flex;
    justify-content: space-between;
    padding-right: 10px;
    align-items: center;
}
.footer-container .footer-links {
    display: flex;
    gap: 10px;
}
.logo-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-container img {
    height: 90%;
    width: auto;
}

.header-container .nav-logo-container {
    display: flex;
    height: 60.4px;
    clip-path: polygon(0 100%, 78% 100%, 100% 0, 0 0);
    background-color: white;
    padding-left: 15px;
    padding-right: 30px;
}

.header-container .logo-nav {
    height: 100%;
    padding: 0;
}

.header-container .logo-bars {
    display: flex;
    height: 100%;
    transform: skewX(-20deg);
    margin-right: 5px;
}

.header-container .logo-bar {
    width: 3.5px;
    background-color: #FFFFFF;
    margin-left: 5px;
}

.header-container .logo-middle-bar {
    width: 7px;
    background-color: #988863;
}
/* End ~ Header & Footer */


/* Header Options & Dropdown Menus */
.header-container .dropdown {
    position: relative;
    display: inline-block;
    height: 100%;
    align-content: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}
.header-container .dropdown .header-option, .header-container .dropdown .header-classification-option {
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 17px;
    padding-left: 12.5px;
    padding-right: 12.5px;
}
.header-container .main-header .header-menu-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 25px;
    width: 25px;
}

.header-container .dropdown .header-option::after, .header-container .dropdown .header-classification-option::after {
    content: "";
    position: absolute;
    height: 2.5px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #988863;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease-in-out;
}

.header-container .dropdown:hover .header-classification-option::after, .header-container .dropdown:hover .header-option::after {
    transform: scaleX(1);
}

.header-container .dropdown .header-classification-option .header-classification-logo {
    display: flex;
    height: 33px;
    width: 40px;
}

.header-container .dropdown .header-icon {
    height: 20px;
    width: 20px;
}

.header-container .dropdown img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.header-container .dropdown ul {
    display: none;
    position: absolute;
    background-color: #F1F1F1;
    min-width: 160px;
    padding: 6px 6px;
    z-index: 1;
}

.header-container .dropdown ul a {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    font-size: 17px;
}

.header-container .dropdown ul li {
    padding: 8px 16px;
    text-decoration: none;
    color: black;
    display: block;
}

.header-container .dropdown ul li:hover {
    background-color: #988863;
}

.header-container .dropdown ul a:hover li{
    color: white;
}

.header-container .dropdown ul a li{
    color: black;
}

.header-container .dropdown:hover ul {
    display: block;
}

/* Mobile Friendly */
.header-container .hamburger {
    display: none;
    cursor: pointer;
    padding-right: 10px;
}
.header-container .hamburger-bar {
    display: block;
    width: 25px;
    height: 1.5px;
    background-color: white;
    margin: 6px;
    transition: all 0.3s ease-in-out;
}
.header-container .hamburger.open .hamburger-bar:nth-child(1) {
    transform: rotate(45deg) translate(5.4px, 5.4px);
}
.header-container .hamburger.open .hamburger-bar:nth-child(2) {
    opacity: 0;
}
.header-container .hamburger.open .hamburger-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5.4px, -5.4px);
}
.header-container .header-menu {
    display: none;
    background-color: #2B2B2B;
    color: white;
    padding: 10px;
    padding-bottom: 15px;
    width: 100%;
    z-index: 1;
    border-top: 3px solid #F9F9F9;
    justify-content: center;
}
.header-container .header-menu .header-menu-links {
    width: 100%;
}
.header-container .header-menu .header-menu-icon-table {
    width: 100%;
    margin-bottom: 15px;
}
.header-container .header-menu .header-menu-icon-table, .header-container .header-menu .header-menu-icon-table td {
    border: 2px solid white;
    border-collapse: collapse;
}
.header-container .header-menu .header-menu-icon-table td {
    padding: 5px;
    transition: background-color 0.3s ease;
}
.header-container .header-menu .header-menu-icon-table td:hover {
    background-color: #988863;
}
.header-container .header-menu .header-menu-icon-table a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.header-container .header-menu .header-menu-icon-table a img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.header-container .header-menu .header-menu-icon-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
}
.header-container .header-menu a {
    font-size: 20px;
}
.header-container .header-menu .header-classificaton-table {
    width: 100%;
}
.header-container .header-menu .header-classification-option {
    padding-left: 0;
    padding-right: 0;
}
.header-container .header-menu .header-option-row {
    display: none;
    align-items: center;
    justify-content: center;
    background-color: white;
    width: 100%;
}
.header-container .header-menu .header-menu-option-td {
    display: flex;
    padding-bottom: 10px;
}
.header-container .header-menu .header-menu-option-td-container {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 0 10px;
}
.header-container .header-menu .header-menu-option-left-container {
    display: flex;
    align-items: center;
    gap: 0 10px;
}
.header-container .header-menu .header-option-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 25px;
    height: 25px;
}
.header-container .header-menu .header-option-logo img {
    width: 25px;
    height: auto;
}
.header-container .header-menu .header-menu-option-links {
    display: flex;
}
.header-container .header-menu .header-menu-option-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
    padding: 5px;
    border: 2px solid white;
}
.header-container .header-menu .header-menu-option-link-left {
    border-right: 1px solid white;
}
.header-container .header-menu .header-menu-option-link-right {
    border-left: 1px solid white;
}
.header-container .header-menu .header-menu-option-link:hover {
    background-color: #988863;
}
.header-container .header-menu .header-bar-separator {
    width: 1px;
    height: 20px;
    background-color: #FFFFFF;
}
/* End ~ Mobile Friendly */

/* End ~ Header Options & Dropdown Menus */


/* About Page */
.about {
    text-align: center !important;
}
.about .article .article-title {
    font-size: 60px;
    margin-bottom: 40px;
}
.about .article .component-text-content h1 {
    width: fit-content;
    margin: auto;
    margin-bottom: 30px;
    font-size: 45px;
}
.about .article .component-text-content h3 {
    margin-bottom: 30px;
}
.about .article .article-components {
    margin-top: 40px;
}
.about .article .component-text {
    margin-top: 60px;
    margin-bottom: 60px;
}
.about .article .component-text-content {
    font-size: 22px;
}
.about .article .image-img-title {
    width: fit-content;
    margin: auto;
    margin-bottom: 30px;
    font-size: 45px;
}
.about .article .component-image-credit-license-container {
    justify-content: center;
}
.about .article .component-text-content ol, .about .article .component-text-content ul {
    font-size: 20px;
}
/* End ~ About */

/* Team Page */
.team-container {
    display: grid;
    gap: 0 20px;
    grid-template-columns: 1fr 200px;
    padding: 10px;
    align-items: center;
    background-color: #F9F9F9;
    border-bottom: 4px solid #988863;
}

.team-container .team-rank-name-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.team-container .ranking-container {
    border: 2px solid #222222;
    padding: 5px;
    width: fit-content;
    white-space: nowrap;
}
.team-container .team-rankings {
    border-left: none;
    height: fit-content;
}
.team-container .team-ranking-div {
    display: grid;
    align-items: center;
    gap: 10px;
    width: 100%;
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
    margin-right: auto;
}
.team-container .team-ranking-div-last {
    margin-bottom: 0;
}
.team-container .ranking-poll-logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}
.team-container .image-container {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.team-container .ranking-poll-name-box {
    white-space: nowrap;
}

.team-container .team-name h1{
    font-size: 65px;
    text-align: left;
}
.team-container .team-location{
    font-style: italic;
    text-align: left;
}
.team-container .team-logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 200px;
    width: 200px;
    text-align: right;
    position: relative;
}
.team-container .team-logo img {
    max-height: 100%;
    max-width: 100%;
    min-height: 100%;
    min-width: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.team-body {
    display: grid;
    grid-template-columns: 1fr 22%;
    align-items: flex-start; /* Aligns children at the top */
    justify-content: space-between;
    position: relative;
}


.team-body .team-classification-table-container {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-width: 100%;
    padding-bottom: 20px;
}

.team-venue-table-container {
    grid-column: 2;
    justify-self: end;
    min-width: 100%;
    padding-bottom: 20px;
}

.team-info-table {
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    min-width: 100%;
}

.team-info-table img {
    vertical-align: middle;
    max-height: 1.5em;
    max-width: 1.5em;
    height: 100%;
    object-fit: contain;
}

.team-info-table tr:last-child td {
    border-bottom: none;
}
.team-info-table td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.team-info-table td:first-child {
    font-weight: bold !important;
}

.team-info-table td:last-child {
    padding-left: 5px;
}

.team-info-table td:only-child {
    padding-left: 10px;
}

.team-info-table .team-information tr:first-child {
    border-top: 2px solid #000;
    padding-top: 10px;
}

.team-body .team-info-table .team-information .top-row, .team-venue-table-container .team-info-table .team-information tr:first-child {
    border-top: none;
}

.team-info-table .team-information .team-info-type, .team-info-table .team-classifications .team-info-type {
    white-space: nowrap;
}

.team-info-table .team-champion-container {
    display: flex;
    align-items: center;
    gap: 5px;
}

.team-info-table .team-champion-image {
    width: 15px;
    height: 15px;
    object-fit: contain;
}

.team-info-table .team-final-cell {
    border-bottom: none;
}

.team-info-table .venue-photo {
    padding: 0 !important;
    border-bottom: none;
}

.team-info-table .venue-photo img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    padding: 0;
}

.team-info-table .venue-icon {
    background-color: #F9F9F9;
    text-align: center;
    border-bottom: none;
}

.team-info-table .venue-icon img {
    width: 80%;
    height: 80%;
    max-width: none;
    max-height: none;
    padding: 0;
    margin: auto;
}

.team-info-table .venue-name {
    text-align: center;
    border-bottom: 1px solid #000000;
}

.team-info-table .venue-photo-credit-container {
    color: #5C5C5C;
    font-size: 12px;
    text-align: center;
}
.team-info-table .venue-photo-credit-license-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 5px;
}
.team-info-table .venue-photo-credit a {
    color: inherit;
    text-decoration: none;
    position: relative;
}
.team-info-table .venue-photo-credit a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -3px;
    left: 50%;
    background-color: #5C5C5C;
    transition: all 0.3s ease-in-out;
}
.team-info-table .venue-photo-credit a:hover::after {
    width: 100%;
    left: 0;
}
.team-info-table .venue-photo-credit-license, .team-info-table .venue-photo-credit-license a {
    display: flex;
    align-items: center;
}
.team-info-table .license-icon {
    width: 14px;
    height: 14px;
}
/* End ~ Team Page */


/* Other Logos For Any Entity */
.all-logos-container {
    padding-bottom: 50px;
}
.all-logos-container .logo-heading {
    text-align: center;
    padding: 10px;
    width: min-content;
    white-space: nowrap;
}
.all-logos-container .logo-grid-box{
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    padding-left: 10px;
    padding-right: 10px;
    justify-items: center;
}
.all-logos-container .logo-grid-box .team-info-table .logo-cell {
    padding-left: 10px;
    background-color: #FAFAFA;
    border-bottom: 0;
}
.all-logos-container .logo-grid-box .team-info-table .logo-cell .logo-cell-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.all-logos-container .logo-grid-box .team-info-table .logo-cell .logo-cell-content .logo-content-img-box {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.all-logos-container .logo-grid-box .team-info-table .logo-cell .logo-cell-content .logo-content-img-box img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.all-logos-container .logo-grid-box .team-info-table .logo-cell .logo-cell-content p {
    font-size: large;
    font-weight: bold !important;
    font-style: italic !important;
    padding-top: 5px;
    text-align: center;
}
.all-logos-container .season-link {
    font-size: large;
    font-weight: bold !important;
    font-style: italic !important;
    padding-top: 5px;
    text-align: center;
}
/* End ~  Other Logos For Any Entity*/


/* Organization Pages */
.link-text {
    color: inherit;
    text-decoration: none;
}
/* Organization Teams */
.organization-teams-container {
    padding-bottom: 50px;
}
.organization-teams-container .organization-teams-table {
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    min-width: 100%;
}
.organization-teams-container .organization-teams-table tr:last-child td {
    border-bottom: none;
}
.organization-teams-container .organization-teams-table .organization-image-container {
    flex-grow: 0;
    height: 100%;
    width: 100%;
    margin-left: auto;
    object-fit: contain;
}
.organization-teams-container .organization-teams-table-team-th {
    padding-left: 10px;
    height: 45px;
    font-size: 21px;
    text-align: left;
    border-bottom: 3px solid #988863;
}
.organization-teams-container .organization-teams-table-record-th {
    font-size: 21px;
    text-align: center;
    border-bottom: 3px solid #988863;
}
.organization-teams-container .organization-teams-table-location-th {
    padding-right: 10px;
    font-size: 21px;
    text-align: right;
    border-bottom: 3px solid #988863;
}
/* Conference Divisions */
.organization-teams-container .organization-teams-table .conference-division-header {
    cursor: pointer;
    font-weight: bold;
    font-size: 30px;
    text-align: center;
}
/* Subdivisions & Divisions */
.organization-teams-container .organization-teams-table .sub-division-header {
    cursor: default;
    font-size: 24px;
}
/* End ~ Subdivisions & Divisions */
.organization-teams-container .organization-teams-table tbody.conference-division-header.not-first th {
    border-top: 2px solid #222222;
}
.organization-teams-container .organization-teams-table .conference-division-header th {
    padding-left: 10px;
    background-color: #F1F1F1;
    padding: 10px;
}
.organization-teams-container .organization-teams-table .sub-division-header th {
    background-color: #737373;
    color: white;
    border-top: 3px solid #988863 !important;
    border-bottom: 3px solid #988863;
}
.organization-teams-container .organization-teams-table .conference-division-header th .division-header-content {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    column-gap: 10px;
}
.organization-teams-container .organization-teams-table .conference-division-header th .conference-division-tab {
    grid-template-columns: 1fr auto 1fr;
}
.organization-teams-container .organization-teams-table .conference-division-header th .sub-division-header-content {
    grid-template-columns: 1fr auto;
}
.organization-teams-container .organization-teams-table .conference-division-header th .division-text {
    grid-area: 1 / 1 / 2 / 2;
    text-align: left;
    justify-self: left;
    position: relative;
}
.organization-teams-container .organization-teams-table .conference-division-header th .conference-division-text {
    justify-self: center;
    grid-area: auto;
}
.organization-teams-container .organization-teams-table .conference-division-header th .division-text.team-link::after {
    content: "";
    position: absolute;
    margin-top: 1px;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0%;
    background-color: #988863;
    transition: all 0.4s ease-in-out;
}
.organization-teams-container .organization-teams-table .conference-division-header th .division-text.team-link:hover::after {
    width: 100%;
    left: 0;
}
.organization-teams-container .organization-teams-table .conference-division-header th .sub-division-text {
    font-size: 30px;
    text-align: left;
    justify-self: left;
}
.organization-teams-container .organization-teams-table .conference-division-header th .logo-dropdown-icon-box {
    display: flex;
    justify-content: right;
    align-items: center;
}
.organization-teams-container .organization-teams-table .conference-division-header th .division-header-logo {
    display: flex;
    justify-content: center;
    height: 45px;
    width: 45px;
    margin-right: 10px;
}
.organization-teams-container .organization-teams-table .conference-division-header th .sub-division-header-logo {
    display: flex;
    justify-self: flex-start;
    height: 45px;
    width: 45px;
}
.organization-teams-container .organization-teams-table .conference-division-header th .combined-header-logo {
    justify-self: flex-end;
    height: 45px;
    width: 45px;
}
.organization-teams-container .organization-teams-table .conference-division-header th .vertical-bar {
    display: flex;
    align-self: center;
    width: 1px;
    height: 36px;
    background-color: white;
    margin: 0 10px;
}
.organization-teams-container .organization-teams-table .conference-division-header th .dropdown-icon-box {
    display: flex;
    height: 15px;
    width: 15px;
}
.organization-teams-container .organization-teams-table .conference-division-header th .dropdown-icon {
    flex-grow: 0;
    height: 100%;
    width: 100%;
    margin-left: auto;
    object-fit: contain;
}
.organization-teams-container .organization-teams-table .collapsible-content {
    display: none; /* For All Sub-Classifications */
}
/* ~ Conference Divisions ~ */
/* Divisions (Leagues) */
.organization-teams-container .organization-teams-table .league-division-header {
    font-weight: bold;
    font-size: 30px;
    text-align: center;
}
.organization-teams-container .organization-teams-table .league-division-header th {
    padding-left: 10px;
    background-color: #F1F1F1;
    padding: 10px;
}
.organization-teams-container .organization-teams-table .league-division-header th .division-header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    column-gap: 10px;
}
.organization-teams-container .organization-teams-table .league-division-header th .division-text {
    grid-area: 1 / 2 / 2 / 3;
    text-align: center;
    justify-self: center; /* Center in the grid area */
}
.organization-teams-container .organization-teams-table .league-division-header th .division-header-logo {
    grid-area: 1 / 1 / 2 / 2;
    display: flex;
    justify-self: flex-start;
    height: 45px;
    width: 45px;
}
.organization-teams-container .organization-teams-table .league-division-header th .combined-header-logo {
    justify-self: flex-end;
    height: 45px;
    width: 45px;
}
.organization-teams-container .organization-teams-table .league-division-header th .dropdown-icon-box {
    grid-area: 1 / 3 / 2 / 4;
    display: flex;
    height: 15px;
    width: 15px;
    justify-self: end; /* Align to the end of the grid area */
}
.organization-teams-container .organization-teams-table .league-division-header th .dropdown-icon {
    flex-grow: 0;
    height: 100%;
    width: 100%;
    margin-left: auto;
    object-fit: contain;
}
/* ~ Divisions (Leagues) ~ */
/* Leagues */
.organization-teams-container .organization-teams-table .league-header {
    cursor: pointer;
    font-weight: bold;
    font-size: 24px;
    text-align: center;
}
.organization-teams-container .organization-teams-table tbody.league-header.not-first th {
    border-top: 2px solid #FFFFFF;
}
.organization-teams-container .organization-teams-table .league-header th {
    padding-left: 10px;
    background-color: #737373;
    color: #FFFFFF;
    padding: 5px;
}
.organization-teams-container .organization-teams-table .league-header th .division-header-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}
.organization-teams-container .organization-teams-table .league-header th .league-division-left-text {
    grid-area: 1 / 1 / 2 / 2;
    font-size: 16px;
    font-style: italic;
    border-bottom: 1px solid #988863;
    border-top: 1px solid #737373;
    justify-self: start; /* Align to the start of the grid area */
}
.organization-teams-container .organization-teams-table .league-header th .league-division-left-text a {
    font-size: 16px !important;
    font-style: italic !important;
    font-weight: bold !important;
}
.organization-teams-container .organization-teams-table .league-header th .division-text {
    grid-area: 1 / 2 / 2 / 3;
    text-align: center;
    justify-self: center; /* Center in the grid area */
}
.organization-teams-container .organization-teams-table .league-header th .dropdown-icon-box {
    grid-area: 1 / 3 / 2 / 4;
    display: flex;
    height: 15px;
    width: 15px;
    justify-self: end; /* Align to the end of the grid area */
}
.organization-teams-container .organization-teams-table .league-header th .dropdown-icon {
    flex-grow: 0;
    height: 100%;
    width: 100%;
    margin-left: auto;
    object-fit: contain;
}
/* ~ Leagues ~ */
.organization-teams-container .organization-teams-table-header {
    padding: 10px;
    border-bottom: 3px solid #000000;
    background-color: #F9F9F9;
}
.organization-teams-container .org-teams-table-header-grid {
    display: grid;
    grid-template-columns: 60px 1fr 60px;
}
.organization-teams-container .org-teams-table-header-logo {
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.organization-teams-container .org-teams-table-header-logo-div-left {
    padding-right: 10px;
    text-align: left;
}
.organization-teams-container .org-teams-table-header-logo-div-right {
    padding-left: 10px;
    text-align: right;
}
.organization-teams-container .org-teams-table-header-logo-img,
.organization-teams-container .org-teams-table-team-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.organization-teams-container .org-teams-table-header-center {
    text-align: center;
    font-size: 45px;
}
.organization-teams-container .org-teams-table-header-center-text {
    text-decoration: none;
    color: inherit;
}
.organization-teams-container .org-teams-table-team-row:hover {
    background-color: #F9F9F9;
}
.organization-teams-container .org-teams-table-team-cell {
    border-bottom: 1px solid #ddd;
}
.organization-teams-container .org-teams-table-team-cell.no-teams {
    text-align: center;
    font-size: 28px;
    font-style: italic !important;
    font-weight: bold !important;
    padding-top: 5px;
    padding-bottom: 5px;
}
.organization-teams-container .org-teams-table-team-cell.location {
    white-space: nowrap;
    text-align: right;
    width: 0;
}
.organization-teams-container .no-organization-teams {
    border-bottom: 0;
}
.organization-teams-container .no-organization-teams h2 {
    padding: 10px;
    font-style: italic;
    text-align: center;
}
.organization-teams-container .org-teams-table-team-link {
    display: block;
    text-decoration: none;
    color: inherit;
}
.organization-teams-container .org-teams-table-team-link.team-logo {
    padding: 7px;
}
.organization-teams-container .org-teams-table-team-logo-div {
    display: flex;
    width: 45px;
    height: 45px;
}
.organization-teams-container .org-teams-table-team-link.team-name {
    font-size: 22px;
    padding: 10px;
}
.organization-teams-container .org-teams-table-team-link.team-record {
    font-size: 22px;
    padding: 10px;
    width: 100%;
    white-space: nowrap;
    text-align: center;
}
.organization-teams-container .org-teams-table-team-link.team-location {
    display: block;
    text-align: right;
    font-size: 22px;
    font-style: italic !important;
    padding: 10px;
    text-align: right;
}
/* End ~ Organization Teams */

/* Choose Organization Page */
.choose-organization-container .select-h1 {
    text-align: center;
    font-size: 40px;
    width: 100%;
    padding-top: 30px;
}
.choose-organization-container .organization-table-h1 {
    text-align: center;
    font-size: 30px;
    width: 100%;
    padding-bottom: 20px;
}
.choose-organization-container .all-logos-container.choose-logo-container {
    padding: 50px;
}
/* End ~ Choose Organization Page  */

/* End ~ Organization Pages */


/* Organization Body Containers & Tables */
#team-page {
    display: flex;
    flex-direction: column;
}
#team-page .organization-content {
    display: grid;
    grid-template-columns: 1fr 22%;
    justify-items: stretch;
    padding: 20px 10px;
}
#team-page .organization-content .organization-rigth-container {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-width: 100%;
}
#team-page .organization-content .organization-classification-table-container {
    min-width: 100%;
    margin-bottom: 20px;
}
.organization-classification-table-container .team-info-table .organization-information tr:first-child {
    border-top: 2px solid #000;
    padding-top: 10px;
}

.organization-classification-table-container .team-info-table .organization-info-type {
    white-space: nowrap;
}
.organization-classification-table-container .team-info-table #organization-classification-logos {
    border-bottom: 3px solid #988863;
}
.organization-classification-table-container .team-info-table #organization-classification-logos td{
    padding-top: 0;
    padding-bottom: 0;
}
.organization-classification-table-container .team-info-table #organization-classification-logos #organization-classification-logos-container {
    text-align: right;
}
.organization-classification-table-container .team-info-table #organization-classification-logos td:first-child {
    height: 45px;
    padding: 10px;
}
.organization-classification-table-container .team-info-table .organization-logo-classification-div { 
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.organization-classification-table-container .team-info-table #organization-classification-logos td a {
    display: inline-block;
    margin: 0 10px 0 0;
}

.organization-classification-table-container .team-info-table #organization-classification-logos td a:last-child {
    border-right: none;
    margin-right: 0;
}

/* End ~ Organization Body Containers & Tables */

#team-page .team-info-table .league-header {
    font-size: 1.7em;
    font-weight: bold;
    text-align: left;
    padding: 10px;
}

.member-content {
    padding-right: 10px;
    padding-bottom: 10px;
}

.conference-header {
    font-size: larger;
    border-bottom: none;
    display: flex;
    justify-content: space-between;
}

.member-info {
    font-size: 20px; /* Start with a large font size */
    font-weight: bolder;
    width: fit-content;
    height: fit-content;
}

.member-info .team-link {
    line-height: 20px; /* Should be the same as the height of .team-info */
}

.team-links{
    padding: 4px;
    position: relative;
}

.team-social-links {
    display: inline-block;
}

/* Color Boxes & Team Links */
.color-box {
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 5px;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    position: relative;
}

.tooltip-text {
    display: none;
}

.tippy-box {
    font-size: 16px;
}
/* End ~ Color Boxes & Team Links */

/* Organization Header */
.organization-header-container {
    display: grid;
    grid-template-columns: 1fr 160px;
    padding: 10px;
    align-items: center;
    background-color: #F9F9F9;
    border-bottom: 4px solid #988863;
    column-gap: 20px;
}

.organization-header-container .organization-title-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.organization-header-container h1 {
    font-size: 65px;
    text-align: left;
}

.organization-header-container .organization-header-logo-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 160px;
    height: 160px;
    text-align: right;
    position: relative;
}

.organization-header-container .organization-header-logo-box img {
    max-width: 100%;
    max-height: 100%;
    min-height: 100%;
    min-width: 100%;
    object-fit: contain;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
/* End ~ Organization Header */


.team-info {
    grid-column: 1;
    text-align: right;
}

#team-page .team-info-h2 {
    text-align: left;
    font-size: 4rem;
}

#team-page .team-info-h3{
    text-align: right;
    font-size: 2rem;
}


#team-page .team-logo-container {
    padding: 0 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-end; /* Align items along the bottom */
    overflow: auto; /* Add overflow auto to handle any potential overflow */
}

#team-page .team-logo-container-header {
    padding: 10px;
    padding-top: 20px;
    font-weight: bold !important;
    text-align: right;
}

#team-page .team-logo-item {
    min-width: 150px; /* Set a minimum width */
    max-width: 150px;
    margin: 10px;
    text-align: center;
}

#team-page .team-logo {
    width: 100%;
    height: auto;
}

#team-page .team-logo-name {
    font-style: italic !important;
}

.team-classifiction-logo-text {
    display: flex;
    align-items: center;
}

.team-link {
    text-decoration: none;
    color: inherit;
}

.team-link .hidden-logo {
    display: none;
}

.team-info-table-logo {
    height: 1.5em;
    width: 1.5em;
}

.team-info-table #team-classification-logos{
    border-bottom: 3px solid #988863;
}

.team-info-table #team-classification-logos td:first-child {
    height: 45px;
    padding-left: 10px;
}
.team-info-table #team-classification-logos .team-logo-classification-div{ 
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.team-info-table #team-classification-logos td a {
    display: inline-block; /* Align the logos horizontally */
    margin: 0 10px 0 0;
}

.team-info-table #team-classification-logos td a:last-child {
    border-right: none;
    margin-right: 0;
}

.team-info-table img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.team-info-table .special-designation {
    text-align: center;
}
.team-info-table .retired-team {
    text-align: center;
    font-style: italic !important;
}
/* New Dashboard */
.dashboard .hidden-row {
    display: none;
}
.dashboard .conflicts-button {
    background-color: #730808;
}
.dashboard .verified-fields-button {
    background-color: #0D753B;
}
.dashboard .history-button {
    background-color: #6D6D6D;
}
.dashboard .refresh-button {
    background-color: #e87c08;
}
/* End ~ New Dashboard */

.dashboard button{
    position: relative;
    margin: 0 auto;
    display: block;
    padding: 5px 10px;
    font-size: 1.0em;
    color: #fff;
    background-color: #007BFF;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.dashboard .collect-run-all {
    background-color: #0D753B;
}

.dashboard button:hover {
    background-color: #0056b3; /* Change background color to a darker blue when hovering over the button */
}

.dashboard-cg {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    margin: 20px;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}

.dashboard-div {
    padding: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.dashboard-div button {
    position: static;
    margin-top: 5px;
    width: 100%;
}

.dashboard-div h2 {
    text-align: center;
    font-size: 1.5em;
    font-weight: bold;
}

.dashboard-cg #glance-container {
    margin-top: 5px;
}

.dashboard .dashboard-values-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.dashboard .dashboard-values-button {
    margin: inherit;
}

.dashboard .dashboard-values p {
    font-size: 2.0em;
    font-weight: bold !important;
    text-align: center;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
  
/* Modal Content/Box */
.modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    position: relative;
    width: 50%;
    font-size: 1.5em;
    font-weight: bold;
}


.dashboard-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
}
  
.dashboard-modal-content {
    display: flex;
    flex-direction: column;
    align-items: stretch; /* Stretch child elements to fill the width of the container */
    justify-content: flex-start; /* Align child elements to the start of the main axis */
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    position: relative;
    width: 80%; /* Increase the width to fit all fields */
    font-size: 1.5em;
    font-weight: bold;
}

.dashboard-modal .attributeRows {
    width: 100%;
    padding-bottom: 20px;
}

.dashboard-modal .attributeRows p textarea, .dashboard-modal .attributeRows p select {
    width: auto;
}

.dashboard-modal .attributeRows p input {
    width: 400px !important;
}

.dashboard-modal .attributeRows .select2-container {
    width: 400px !important;
    max-width: 400px !important;
}

.dashboard-modal .search-results-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    margin-bottom: 20px;
}
.dashboard-modal .search-results-table th, .dashboard-modal .search-results-table td {
    padding: 8px;
    text-align: left;
}
.dashboard-modal .search-results-table th {
    background-color: #f2f2f2;
}

.modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.modal-header h2 {
    font-weight: bold;
}
.modal-header .modal-header-matchup {
    margin-top: 10px;
    font-style: italic;
}
.dashboard .attribute-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
}

.dashboard .modal-button-div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 5px;
}
.dashboard .modal-button {
    right: initial;
    margin: initial;
    background-color: #3a95a7;
    padding: 5px;
    font-size: 0.8em;
}
.dashboard .button-group {
    display: flex;
    justify-content: flex-end;
    width: fit-content;
    margin-left: auto;
    gap: 5px;
}
@keyframes flash {
    0% {opacity: 1;}
    50% {opacity: 0.8;}
    100% {opacity: 1;}
}

.red-dot {
    height: 10px;
    width: 10px;
    background-color: #BF2028;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    box-shadow: 0 0 5px #BF2028;
    animation: flash 3s infinite ease-in-out;
}

.dashboard .delete-button {
    background-color: #BF2028;
}

.dashboard .run-button {
    background-color: #0D753B;
}

.close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
}

.form-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 600px;
}

.form-content select {
    font-size: 1em;
}

.form-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px;
}

.dashboard-modal .form-content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.dashboard-modal .form-content p {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-bottom: 10px;
}

.dashboard-modal .form-content p label {
    text-align: left;
    text-transform: capitalize;
    white-space: nowrap;
    margin-right: 20px;
    width: 400px;
}

.dashboard-modal .form-content p input, textarea, select {
    width: 100%;
}

.dashboard-modal .form-content p input, textarea{
    height: 35px; /* Adjust as needed */
    font-size: 85%; /* Adjust as needed */
}

.select2-container {
    width: 100% !important;
}

.dashboard-modal .form-content .form-group {
    display: flex;
    justify-content: space-between; /* Distribute space evenly between the field name and the field entry */
}

.dashboard-modal .form-content .form-group label {
    text-align: left; /* Align the field names to the left */
}

.dashboard-modal .form-content .form-group input {
    text-align: right; /* Align the field entries to the right */
}

.submit-button {
    margin: 0 auto;
    display: block;
    padding: 10px 20px; /* Increase padding to make the button bigger */
    font-size: 1.2em; /* Increase font size */
    color: #fff; /* Change text color to white */
    background-color: #007BFF; /* Change background color to blue */
    border: none; /* Remove border */
    border-radius: 5px; /* Add rounded corners */
    cursor: pointer; /* Change cursor to pointer when hovering over the button */
    transition: background-color 0.3s ease; /* Add transition for background color */
}

.submit-button:hover {
    background-color: #0056b3; /* Change background color to a darker blue when hovering over the button */
}



.dashboard-week-selector {
    background-color: #F3F3F3;
    border-radius: 15px;
    padding: 10px;
    margin: 5px;
    margin-bottom: 20px;
}

.dashboard-week-selector details {
    transition: height 0.2s ease-out;
    overflow: hidden;
}

.dashboard-week-selector summary {
    list-style: none;
    cursor: pointer;
}

.dashboard-week-selector summary::-webkit-details-marker {
    display: none;
}

.dashboard-week-selector .future-games-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.loading-animation {
    display: none;
    width: 50px;
    height: 50px;
}

.dashboard-week-selector .day-games {
    margin-top: 5px;
}

.dashboard-week-selector .week-details {
    border-radius: 10px;
    overflow: hidden;
    background-color: #222222;
    color: #FFFFFF;
    padding: 5px;
    margin: 5px;
}

.dashboard-week-selector .week-details > :last-child {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.dashboard-week-selector .current-week {
    background-color: #FFFFFF;
    color: #000000;
}

.futureGames {
    width: 100%;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-collapse: separate;
    border-spacing: 0;
}

.futureGames th {
    cursor: pointer;
    background-color: #f2f2f2;
    padding: 10px;
    text-align: left;
}

.futureGames thead th {
    background-color: #988863;
    color: white;
}

.futureGames td {
    padding: 10px;
}

.futureGames tr.game-row:nth-child(4n-1),
.futureGames tr.game-row:nth-child(4n-2) {
    background-color: #f2f2f2;
}

.futureGames tr:first-child th:first-child {
    border-top-left-radius: 5px;
}

.futureGames tr:first-child th:last-child {
    border-top-right-radius: 5px;
}

.futureGames tr:last-child td:first-child {
    border-bottom-left-radius: 5px;
}

.futureGames tr:last-child td:last-child {
    border-bottom-right-radius: 5px;
}

.futureGames .date-header {
    background-color: #ddd;
    font-weight: bold;
    padding: 10px;
}

.futureGames img {
    vertical-align: middle;
    max-height: 1em;
    max-width: 1em;
    height: 100%;
    object-fit: contain;
}

.futureGames .dashboard-team-logo {
    max-height: 1.5em;
    max-width: 1.5em;
}


.dashboard .modify-game {
    display: none;
}

.modify-game .modify-game-menu {
    display: flex;
    justify-content: space-around;
    background-color: #f8f8f8;
    padding: 10px;
    width: 100%;
}

.modify-game-menu .modify-game-menu-button {
    position: relative;
    padding: 10px 24px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border: none;
}

.dashboard-modal .entries-table {
    width: 100%;
    max-width: 100%; /* Ensure the table doesn't exceed its container */
    border-collapse: collapse;
}

.dashboard-modal .entries-table th, .dashboard-modal .entries-table td {
    border: 1px solid #ddd;
    padding: 8px;
    white-space: normal; /* Allow text to wrap within cells */
}

.dashboard-modal .entries-table .hidden-td {
    width: 0;
    height: 0;
    border: none;
    padding: 0;
    overflow: hidden;
}

.dashboard-modal .entries-table th {
    background-color: #f2f2f2;
    color: black;
}


.collect-message {
    position: fixed;
    right: 0;
    top: 10%;
    background: #05154b;
    color: white;
    font-size: 1em;
    padding: 10px;
    border: 1px solid #FFFFFF;
    border-right: none;
    animation: slide-in 0.5s forwards, slide-out 0.5s 4.5s forwards;
}
.collect-message.success {
    background-color: #0D753B;
}

.collect-message.failure {
    background-color: #BF2028;
}

@keyframes animation {
    0% {
        stroke-dasharray: 1 98;
        stroke-dashoffset: -105;
    }
    50% {
        stroke-dasharray: 80 10;
        stroke-dashoffset: -160;
    }
    100% {
        stroke-dasharray: 1 98;
        stroke-dashoffset: -300;
    }
}
  
#loading-animation-spinner {
    transform-origin: center;
    animation-name: animation;
    animation-duration: 1.2s;
    animation-timing-function: cubic-bezier;
    animation-iteration-count: infinite;
}

@keyframes slide-in {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes slide-out {
    from { transform: translateX(0); }
    to { transform: translateX(100%); }
}


/* Schedule */
.cfc-full-schedule {
    background-color: #F9F9F9;
    min-height: 100vh;
}
.cfc-schedule-container {
    padding-left: 10px;
    padding-right: 10px;
}
.cfc-full-schedule .custom-dropdown-options {
    position: absolute;
    display: none;
    top: 100%;
    background-color: white;
    border: 1px solid #ccc;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 100px;
    margin-top: 2px;
}
.cfc-full-schedule .dropdown-option {
    padding: 10px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
}
.cfc-full-schedule .dropdown-option:hover {
    background-color: #f5f5f5;
}

/* Classification Filter Dropdown Menus*/
#classification-filter-container {
    width: 90%;
    margin: auto;
    padding-top: 20px;
    padding-bottom: 30px;
}

#classification-filter-container .filter-title {
    padding-top: 5px;
    padding-bottom: 35px;
}
#classification-filter-container .filter-title h1 {
    font-size: 55px;
    text-align: center;
}

#classification-filter-container .filter-left-content .filter-bar-separator {
    width: 415px;
    height: 1.5px;
    background-color: black;
    margin: auto;
    margin-top: 15px;
}

#classification-filter-container .filter-left-content .filter-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding-top: 15px;
}

#classification-filter-container .filter-left-content .filter-logo-container img {
    width: 225px;
    height: auto;
}

#classification-filter-container .dropdowns-container {
    display: flex;
    gap: 10px 20px; /* Space between dropdown groups */
    justify-content: center;
    flex-wrap: wrap; /* Ensure dropdown groups wrap in smaller containers */
}

#classification-filter-container .dropdown-group {
    display: flex;
    flex-direction: column; /* Stack label and dropdown vertically */
    align-items: center; /* Center align items */
    min-width: 120px; /* Minimum width for each dropdown group */
}

#classification-filter-container .dropdowns-container label {
    font-size: 14px;
    font-weight: bold; /* Make label text bold */
    text-align: center; /* Center-align the label text */
    margin-bottom: 2px; /* Space between label and dropdown */
}

#classification-filter-container select {
    padding: 8px;
    padding-right: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    cursor: pointer;
    appearance: none;
    background-color: white;
    transition: border-color 0.3s ease-in-out; /* Smooth transition for interactivity */
    text-align: left; /* Ensure option text is left-aligned */
    background-image: url('https://cfc1869.s3.us-east-1.amazonaws.com/Website/Down%20Arrow.svg'); /* Add your down arrow image */
    background-position: right 10px center; /* Adjust as needed */
    background-repeat: no-repeat;
    background-size: auto 5px;
    width: 120px;
}

#classification-filter-container select:disabled {
    background-color: #f0f0f0; /* Light gray background for disabled dropdown */
    cursor: not-allowed; /* Change cursor to indicate action is not allowed */
    opacity: 0.6; /* Optionally make the dropdown slightly transparent */
}

#classification-filter-container select img {
    height: 10px;
    width: auto;
}

#classification-filter-container select:hover, #classification-filter-container select:focus {
    border-color: #007bff; /* Interactive color change */
}

#classification-filter-container select:disabled:hover, #classification-filter-container select:disabled:focus {
    border-color: #ccc; /* Keep the border color unchanged on hover/focus */
}

/* End ~ Classification Filter Dropdown Menus */

/* Week Carousel */
.week-carousel-container {
    width: 70%;
    display: grid;
    grid-template-columns: 25px 1fr 25px;
    margin: auto;
    grid-gap: 20px;
}
.year-calendar-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.year-calendar {
    position: relative;
    display: flex;
    justify-content: center;
    width: 25px;
    height: 25px;
}
.year-calendar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    cursor: pointer;
}
.week-carousel {
    display: flex;
    justify-content: space-between;
    margin: auto;
    align-items: center;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}
.week-carousel .week {
    flex-grow: 1;
    text-align: center;
    opacity: 0.6;
    transition: opacity 0.3s ease-in-out;
}
.week-carousel .week:hover {
    opacity: 1;
    cursor: pointer;
}
.week-carousel .week.selected {
    opacity: 1;
}
.week-carousel .full-date {
    display: block;
}
.week-carousel .short-date {
    display: none;
}
.week-carousel .week-tab-title {
    margin-bottom: 1px;
}
.week-carousel #prev-button, .week-carousel #next-button {
    display: flex;
    align-items: center;
    flex-basis: auto;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    padding-left: 7px;
    padding-right: 7px;
}
.week-carousel #prev-button img, .week-carousel #next-button img {
    height: 15px;
    width: auto;
}
.week-carousel #prev-button.disabled img, .week-carousel #next-button.disabled img {
    opacity: 0.5;
    cursor: not-allowed;
}
/* End ~ Week Carousel */

/* CFC Schedule */
#games-container {
    padding-top: 20px;
    padding-bottom: 20px;
}

.cfc-schedule table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}
.cfc-schedule tr.game-row.odd, .cfc-schedule tr.title-row.odd {
    background-color: #F2F2F2;
    --tr-color: #F2F2F2;
}
.cfc-schedule tr.game-row.even, .cfc-schedule tr.title-row.even {
    background-color: #FFFFFF;
    --tr-color: #FFFFFF;
}
.cfc-schedule tr.title-row {
    background-color: inherit;
}
.cfc-schedule .special-game-container {
    display: flex;
    align-items: center;
}
.cfc-schedule .game-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(0 100%, 78% 100%, 100% 0, 0 0);
    background-color: white;
    padding-left: 5px;
    padding-right: 5px;
    height: 25.4px;
    margin-bottom: -0.4px;
}
.cfc-schedule .special-game-logo {
    width: 15px;
    height: 15px;
    margin-top: 1px;
    margin-bottom: 1px;
    margin-right: 5px;
}
.cfc-schedule .special-game-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cfc-schedule .special-game-logo-separator {
    width: 0.5px;
    height: 12px;
    background-color: #222222;
    margin-right: 5px;
}
.cfc-schedule .special-game-container .logo-bars {
    display: flex;
    transform: skewX(-14deg);
    margin-right: 7px;
    height: 25px;
}
.cfc-schedule .special-game-container .logo-bar {
    width: 1px;
    background-color: #FFFFFF;
    margin-left: 0px;
}
.cfc-schedule .special-game-container .logo-bar.logo-middle-bar {
    margin-left: 3px;
    width: 3px;
    background-color: #988863;
}
.cfc-schedule .special-game-container .logo-bar.logo-right-bar {
    margin-left: 3px;
}
.cfc-schedule th, .cfc-schedule td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    padding-left: 7px;
}
.cfc-schedule td {
    border-top: 2px solid var(--tr-color);
    border-bottom: 2px solid var(--tr-color);
    padding-top: 1px;
    padding-bottom: 1px;
}
.cfc-schedule td:last-child {
    padding-right: 7px;
}
.cfc-schedule th:nth-child(1), .cfc-schedule th:nth-child(3){
    width: 18%;
}
.cfc-schedule th:nth-child(2), .cfc-schedule th:nth-child(4){
    width: 3%;
}
.cfc-schedule th:nth-child(5){
    width: 7%;
}
.cfc-schedule th:nth-child(6){
    width: 26%;
}
.cfc-schedule th:nth-child(7){
    width: 13%;
}
.cfc-schedule th:nth-child(8){
    width: 5%;
}
.cfc-schedule th:nth-child(9){
    width: 7%;
}
.cfc-schedule .team-info {
    display: flex;
    align-items: center;
}
.cfc-schedule .team-info a {
    text-align: left;
}
.cfc-schedule .logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-right: 5px;
}
.cfc-schedule .logo-box a {
    display: contents;
}
.cfc-schedule .logo-box img {
    min-width: 100%;
    min-height: 100%;
    object-fit: contain;
}
.cfc-schedule a {
    color: inherit;
    text-decoration: none;
    position: relative;
}
.cfc-schedule a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: -2px;
    left: 50%;
    background-color: #988863;
    transition: all 0.2s ease-in-out;
}
.cfc-schedule a:hover::after {
    width: 100%;
    left: 0;
}
.cfc-schedule .logo-box a::after {
    content: none;
}
.cfc-schedule th, .cfc-schedule td, .cfc-schedule a {
   text-align: center;
}
.cfc-schedule th {
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 16px !important;
}
.cfc-schedule .team-header {
    padding-left: calc(7px + 3%);
}
.cfc-schedule td, .cfc-schedule a {
    font-size: 15px !important;
}
.cfc-schedule .home-team {
    padding-left: 14px;
}
.cfc-schedule td.winner, .cfc-schedule td.lower-score {
    text-align: right;
    font-size: 17px !important;
}
.cfc-schedule .lower-score {
    opacity: 0.8;
}
.cfc-schedule .winner {
    text-shadow: -0.1px 0 black, 0 0.1px black, 0.1px 0 black, 0 -0.1px black;
    position: relative;
    height: 100%;
    border-bottom: 0;
}
.cfc-schedule .home-team.winner, .cfc-schedule .away-team.winner {
    border-bottom: 2px solid var(--tr-color);
}
.cfc-schedule .winner .team-score-container {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: min-content;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 2px solid #0D753B;
}
.cfc-schedule .title-row td {
    font-size: 12px !important;
    padding-top: 0;
    padding-bottom: 0;
}
.cfc-schedule .special-title-row td {
    border-top: none;
    border-bottom: none;
    padding-left: 0;
}
.cfc-schedule .showdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.cfc-schedule .showdown {
    display: flex;
    justify-content: center;
    align-items: center;
}
.cfc-schedule .showdown a p {
    margin: 0 0.2em;
}
.cfc-schedule .showdown-logos {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cfc-schedule .showdown-logo-box {
    align-items: center;
    width: 25px;
    height: 25px;
    margin: 0 0.2em;
}
.cfc-schedule .showdown-logo-box img {
    max-height: 100%;
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.cfc-schedule .vs {
    margin: 0 0.1em;
    font-size: 12px !important;
}
.cfc-schedule .mobile .vs {
    margin: 0 3px;
}
.cfc-schedule .game-row {
    position: relative;
}
.cfc-schedule .game-title {
    text-align: left;
    display: flex;
    align-items: center;
}
.cfc-schedule .title-row td {
    background-color: #222222;
    color: #FFFFFF;
    text-align: center;
}
.cfc-schedule-mobile {
    display: none;
}

/* CFC Schedule - 1300px */
.cfc-schedule.width-1300px th:nth-child(1), .cfc-schedule.width-1300px th:nth-child(3) {
    width: 14%;
}
.cfc-schedule.width-1300px th:nth-child(2), .cfc-schedule.width-1300px th:nth-child(4) {
    width: 4%;
}
.cfc-schedule.width-1300px th:nth-child(7) {
    width: 15%;
}
.cfc-schedule.width-1300px th:nth-child(8) {
    width: 7%;
}
.cfc-schedule.width-1300px th:nth-child(9) {
    width: 9%;
    padding-right: 7px;
}
.cfc-schedule.width-1300px th {
    font-size: 13px !important;
}
.cfc-schedule.width-1300px td, .cfc-schedule.width-1300px a {
    font-size: 13px !important;
}
.cfc-schedule.width-1300px td.winner, .cfc-schedule.width-1300px td.lower-score {
    font-size: 13px !important;
}
/* End ~ CFC Schedule - 1300px */
/* CFC Schedule - 900px */
.cfc-schedule-full.width-900px {
    display: none;
}
.cfc-schedule-mobile.width-900px {
    display: block;
    padding-bottom: 20px;
}
.cfc-schedule-scroll-container.width-900px {
    overflow: hidden;
    overflow-x: scroll;
    margin-bottom: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.cfc-schedule.width-900px table {
    width: 1000px;
    margin-bottom: 5px;
}
.cfc-schedule-mobile-container.width-900px table {
    width: 100%;
}
.cfc-schedule.width-900px-full {
    display: none;
}
.cfc-schedule.width-900px-mobile {
    display: block;
    padding-bottom: 20px;
}
.cfc-schedule.width-900px-mobile-container table {
    width: 100%;
}
.cfc-schedule.width-900px .game-status-and-logo-bar {
    width: 55%;
    text-align: left;
}
.cfc-schedule.width-900px .game-filler-cell {
    width: 11%;
}
.cfc-schedule.width-900px .showdown-special-logo-cell {
    width: 33%;
}
.cfc-schedule.width-900px .mobile .game-status-mobile {
    font-weight: bold !important;
    text-align: left;
}
.cfc-schedule.width-900px .mobile .showdown-logo-box {
    margin: 0;
}
.cfc-schedule.width-900px .mobile .away-team {
    padding-top: 2px;
}
.cfc-schedule.width-900px .mobile .home-team {
    padding-bottom: 2px;
    padding-left: 7px;
}
.cfc-schedule.width-900px .mobile .winner .team-score-container {
    right: 7px;
}
.cfc-schedule.width-900px .mobile .home.winner .team-score-container {
    top: -4px;
}
.cfc-schedule.width-900px .mobile .lower-score .team-score-container {
    padding-right: 7px;
}
.cfc-schedule.width-900px .mobile .title-row td {
    background-color: inherit;
    color: black;
    font-size: 11px !important;
    font-style: italic !important;
    padding-left: 7px;
    padding-top: 1px;
    padding-bottom: 2px;
}
.cfc-schedule.width-900px .mobile .showdown-container {
    justify-content: flex-end;
}
.cfc-schedule.width-900px .mobile .game-logos {
    height: auto;
    justify-content: flex-end;
    clip-path: none;
    background-color: inherit;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}
.cfc-schedule.width-900px .mobile .special-game-logo {
    width: 25px;
    height: 25px;
    margin: 0;
}
.cfc-schedule.width-900px .mobile .special-game-logo-separator {
    margin-left: 5px;
}
.cfc-schedule.width-900px .mobile .game-tv-networks-cell {
    justify-content: flex-end;
    display: flex;
}
.cfc-schedule.width-900px .mobile .game-tv-networks-cell .logo-box {
    width: 25px;
    height: 25px;
    margin-right: 0;
}
.cfc-schedule.width-900px .mobile .game-location-cell {
    text-align: right;
}
/* End ~ CFC Schedule - 900px */
/* CFC Schedule - 640px */
.cfc-schedule.width-640px h2 {
    font-size: 1.3em;
    text-align: center;
}
.cfc-schedule.width-640px .logo-box {
    width: 20px;
    height: 20px;
}
.cfc-schedule.width-640px th {
    font-size: 12px !important;
}
.cfc-schedule.width-640px td, .cfc-schedule.width-640px a {
    font-size: 12px !important;
}
.cfc-schedule.width-640px td.winner, .cfc-schedule.width-640px td.lower-score {
    font-size: 12px !important;
}
.cfc-schedule.width-640px .showdown-logo-box {
    width: 15px;
    height: 15px;
}
.cfc-schedule.width-640px .mobile .showdown-logo-box {
    width: 25px;
    height: 25px;
}
.cfc-schedule.width-640px .mobile .special-game-logo {
    width: 25px;
    height: 25px;
}
.cfc-schedule.width-640px .mobile td, .cfc-schedule.width-640px .mobile a {
    font-size: 13px !important;
}
.cfc-schedule.width-640px .mobile .logo-box {
    width: 30px;
    height: 30px;
}
/* End ~ CFC Schedule 640px */
/* CFC Schedule - 450px */
.cfc-schedule.width-450px .mobile .showdown-logo-box {
    width: 15px;
    height: 15px;
}
.cfc-schedule.width-450px .mobile .special-game-logo {
    width: 15px;
    height: 15px;
}
.cfc-schedule.width-450px .mobile .vs {
    font-size: 10px !important;
}
.cfc-schedule.width-450px .mobile .title-row td {
    font-size: 10px !important;
}
.cfc-schedule.width-450px .mobile td, .cfc-schedule.width-450px .mobile a {
    font-size: 12px !important;
}
.cfc-schedule.width-450px .mobile .logo-box {
    width: 20px;
    height: 20px;
}
/* Ends ~ CFC Schedule 450px */

/* End ~ CFC Schedule */

/* CFC Team Schedule */
.team-body {
    padding: 10px;
    padding-bottom: 50px;
}

#team-games-container {
    padding-right: 10px;
    grid-row: span 2;
    height: 600px;
}

.cfc-team-schedule table {
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    margin-bottom: 20px;
}
.cfc-team-schedule th:nth-child(1), .cfc-team-schedule .col-1 { width: 11%; }
.cfc-team-schedule th:nth-child(2), .cfc-team-schedule .col-2 { width: 30%; }
.cfc-team-schedule th:nth-child(3), .cfc-team-schedule .col-3 { width: 7%; }
.cfc-team-schedule th:nth-child(4), .cfc-team-schedule .col-4 { width: 23%; }
.cfc-team-schedule th:nth-child(5), .cfc-team-schedule .col-5 { width: 12%; }
.cfc-team-schedule th:nth-child(6), .cfc-team-schedule .col-6 { width: 8%; }
.cfc-team-schedule th:nth-child(7), .cfc-team-schedule .col-7 { width: 9%; }

.cfc-team-schedule .season-record-row td {
    text-align: left;
    padding-top: 9.125px;
    padding-bottom: 9.125px;
    border-bottom: 3px solid #988863;
}
.cfc-team-schedule .team-season-record {
    display: flex;
    justify-content: space-between;
}
.cfc-team-schedule .team-season-record-header {
    text-align: right;
    white-space: nowrap;
    display: flex;
    align-items: center;
}
.cfc-team-schedule .team-season-select-container {
    display: flex;
    gap: 0 5px;
}
.cfc-team-schedule .team-schedule-no-games {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}
.cfc-team-schedule .team-season-select-container select {
    width: auto;
    white-space: nowrap;
    font-size: 16px;
}
.cfc-team-schedule .season-team-schedule {
    text-align: left;
    padding-left: 7px;
}
.cfc-team-schedule .team-record {
    text-align: right;
    padding-right: 7px;
}
.cfc-team-schedule tr.game-row.odd, .cfc-team-schedule tr.title-row.odd {
    background-color: #FFFFFF;
    --tr-color: #FFFFFF;
}
.cfc-team-schedule tr.game-row.even, .cfc-team-schedule tr.title-row.even {
    background-color: #F2F2F2;
    --tr-color: #F2F2F2;
}
.cfc-team-schedule tr.title-row {
    background-color: #F2F2F2;
}
.cfc-team-schedule .special-game-container {
    display: flex;
    align-items: center;
}
.cfc-team-schedule .game-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(0 100%, 78% 100%, 100% 0, 0 0);
    background-color: white;
    padding-left: 5px;
    padding-right: 5px;
    height: 25.4px;
    margin-bottom: -0.4px;
}
.cfc-team-schedule .special-game-logo {
    width: 15px;
    height: 15px;
    margin-top: 1px;
    margin-bottom: 1px;
    margin-right: 5px;
}
.cfc-team-schedule .special-game-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cfc-team-schedule .special-game-logo-separator {
    width: 0.5px;
    height: 12px;
    background-color: #222222;
    margin-right: 5px;
}
.cfc-team-schedule .mobile .special-game-logo-separator {
    margin-left: 5px;
}
.cfc-team-schedule .special-game-container .logo-bars {
    display: flex;
    transform: skewX(-14deg);
    margin-right: 7px;
    height: 25px;
}
.cfc-team-schedule .special-game-container .logo-bar {
    width: 1px;
    background-color: #FFFFFF;
    margin-left: 0px;
}
.cfc-team-schedule .special-game-container .logo-bar.logo-middle-bar {
    margin-left: 3px;
    width: 3px;
    background-color: #988863;
}
.cfc-team-schedule .special-game-container .logo-bar.logo-right-bar {
    margin-left: 3px;
}
.cfc-team-schedule th, .cfc-team-schedule td {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
    padding-left: 7px;
}
.cfc-team-schedule td {
    border-top: 2px solid var(--tr-color);
    border-bottom: 2px solid var(--tr-color);
    padding-top: 1px;
    padding-bottom: 1px;
}
.cfc-team-schedule td:last-child {
    padding-right: 7px;
}
.cfc-team-schedule .team-info {
    display: flex;
    align-items: center;
    width: 100%;
}
.cfc-team-schedule .team-info a {
    text-align: left;
}
.team-name-logo {
    display: flex;
    align-items: center;
}
.cfc-team-schedule .logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-right: 5px;
}
.cfc-team-schedule .logo-box a {
    display: contents;
}
.cfc-team-schedule .logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cfc-team-schedule-mobile {
    display: none;
}
/* TV Popup Styling (Cannot Be Contained Within Parent) */
.tv-link-container:not(:first-child)::before {
    content: "";
    position: absolute;
    left: -9px;
    height: 80%;
    width: 1px;
    background-color: #000000;
    top: 10%;
}
.tv-link-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    margin-left: 18px;
}
.tv-link-container:first-child {
    margin-left: 0;
    padding-left: 0;
}
.tv-link-container a {
    position: relative;
    display: inline-flex; /* Ensure the tag doesn't collapse */
    align-items: center;
    color: #000000;
    text-decoration: none;
}
.tv-link-container a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: -3.5px; /* Adjust as needed */
    left: 50%;
    background-color: #988863;
    transition: all 0.2s ease-in-out;
}
.tv-link-container a:hover::after {
    width: 100%;
    left: 0;
}
.tippy-content {
    display: flex;
}
.tippy-box {
    max-width: 100% !important;
}
.tippy-box[data-theme~='custom-tippy-theme'] {
    background-color: #F9F9F9 !important;
    border: 1.5px solid #000000 !important;
}
.tippy-box[data-theme~='custom-tippy-theme'] .tippy-arrow {
    color: #000000 !important;
}
.tippy-box[data-placement^=top]>.tippy-arrow:before {
    bottom: -8px;
    left: 0;
    border-width: 8px 8px 0;
    border-top-color: initial;
    transform-origin: center top;
}
.tippy-buttons {
    display: flex;
    padding: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.tippy-buttons button {
    background-color: #007BFF;
    color: #FFFFFF;
    border: none;
    font-size: 12px;
    border-radius: 3px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 8px;
    padding-right: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
/* End ~ TV Popup Styling (Cannot Be Contained Within Parent) */
.cfc-team-schedule a {
    color: inherit;
    text-decoration: none;
    position: relative;
}
.cfc-team-schedule a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: -2px;
    left: 50%;
    background-color: #988863;
    transition: all 0.2s ease-in-out;
}
.cfc-team-schedule a:hover::after {
    width: 100%;
    left: 0;
}
.cfc-team-schedule .logo-box a::after {
    content: none;
}
.cfc-team-schedule th, .cfc-team-schedule td, .cfc-team-schedule a {
   text-align: center;
}
.cfc-team-schedule th {
    padding-top: 3px;
    padding-bottom: 3px;
    font-size: 16px !important;
}
.cfc-team-schedule td, .cfc-team-schedule a {
    font-size: 15px !important;
}
.cfc-team-schedule .game-result {
    text-shadow: -0.1px 0 black, 0 0.1px black, 0.1px 0 black, 0 -0.1px black;
    display: inline-block;
    width: 55px;
    text-align: center;
    margin-left: 10px;
}
.cfc-team-schedule .date-container {
    display: flex;
    width: 100%;
    text-align: center;
}
.cfc-team-schedule .game-day {
    flex: 6.5;
}
.cfc-team-schedule .game-date-formatted {
    flex: 3.5;
    text-shadow: -0.1px 0 black, 0 0.1px black, 0.1px 0 black, 0 -0.1px black;
}
.cfc-team-schedule td.winner, .cfc-team-schedule td.lower-score {
    text-align: right;
    font-size: 17px !important;
}
.cfc-team-schedule .result-container {
    display: flex;
    margin-left: auto;
    white-space: nowrap;
}
.cfc-team-schedule .result-letter {
    width: 15px;
    font-weight: bold;
    text-align: center;
    margin-left: 2px;
}
.cfc-team-schedule .title-row td {
    font-size: 12px !important;
    padding-top: 0;
    padding-bottom: 0;
}
.cfc-team-schedule .special-title-row td {
    border-top: none;
    border-bottom: none;
    padding-left: 0;
}
.cfc-team-schedule .showdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.cfc-team-schedule .showdown {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cfc-team-schedule .showdown a p {
    margin: 0 0.2em;
}

.cfc-team-schedule .showdown-logos {
    display: flex;
    align-items: center;
    justify-content: center;
}
.cfc-team-schedule .showdown-logo-box {
    align-items: center;
    width: 25px;
    height: 25px;
    margin: 0 0.2em;
}
.cfc-team-schedule .showdown-logo-box img {
    max-height: 100%;
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.cfc-team-schedule .vs {
    margin: 0 0.1em;
    font-size: 12px !important;
}
.cfc-team-schedule .mobile .vs {
    margin: 0 3px;
}
.cfc-team-schedule .game-row {
    position: relative;
}
.cfc-team-schedule .game-title {
    text-align: left;
    display: flex;
    align-items: center;
}
.cfc-team-schedule .title-row td {
    background-color: #222222;
    color: #FFFFFF;
    text-align: center;
}

.cfc-team-schedule .game-status-and-logo-bar {
    width: 55%;
    text-align: left;
}
.cfc-team-schedule .game-filler-cell {
    width: 11%;
}
.cfc-team-schedule .showdown-special-logo-cell {
    width: 33%;
}
.cfc-team-schedule .team-schedule-header-cell {
    padding: 0 !important;
}
.cfc-team-schedule .cfc-team-schedule-header-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF;
    border-bottom: 3px solid #988863;
    border-top: 3px solid #FFFFFF;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 7px;
    padding-right: 7px;
    gap: 0 10px;
    min-height: 40px;
}
.cfc-team-schedule .cfc-team-schedule-header-container h2 {
    display: flex;
    font-size: 19.5px;
    text-align: left;
}
.cfc-team-schedule .mobile .game-status-mobile {
    font-weight: bold !important;
    text-align: left;
}
/* End- ~ CFC Team Schedule */

/* Game */
.game-page {
    background-color: #F9F9F9;
}
.game-page .game-header-container {
    background-color: #F9F9F9;
    padding-top: 20px;
    padding-bottom: 20px;
}
.game-page .game-header-main {
    text-align: center;
    margin: auto;
}
.game-page .game-titles-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-bottom: 20px;
    width: 90%;
    margin: auto;
}
.game-page .game-title-container {
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #222222;
    width: fit-content;
    white-space: normal;
}
.game-page .game-title-container h3 {
    font-size: 16px;
    font-style: italic;
}
.game-page .game-title-logo {
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    margin-right: 10px;
    background-color: white;
    border-radius: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.game-page .game-title-logo img {
    width: 70%;
    height: 70%;
    object-fit: contain;
}
.game-page .game-header-main h2 {
    width: 90%;
    margin: auto;
    font-style: italic;
}
.game-page .game-matchup-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    background-color: #FFFFFF;
    padding-top: 20px;
    padding-bottom: 20px;
}
.game-page .mobile-game-matchup-container {
    display: none;
}
.game-page .team-matchup-main {
    display: flex;
    align-items: center;
}
.game-page .away-team-matchup-main {
    justify-content: flex-end;
}
.game-page .home-team-matchup-main {
    justify-content: flex-start;
}
.game-page .flex-display {
    display: flex;
    width: 100%;
}
.game-page .away-flex {
    justify-content: flex-start;
}
.game-page .home-flex {
    justify-content: flex-end;
}
.game-page .ranking-container {
    border: 2px solid #222222;
    padding: 5px;
    width: fit-content;
    white-space: nowrap;
}
.game-page .away-rankings {
    border-left: none;
}
.game-page .home-rankings {
    border-right: none;
}
.game-page .team-ranking-div {
    display: grid;
    align-items: center;
    gap: 10px;
    width: 100%;
    white-space: nowrap;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
}
.game-page .away-ranking-div {
    margin-right: auto;
}
.game-page .home-ranking-div {
    margin-left: auto;
}
.game-page .team-ranking-div-last {
    margin-bottom: 0;
}
.game-page .ranking-poll-logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}
.game-page .image-container {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.game-page .poll-image-container {
    max-height: 100%;
}
.game-page .ranking-poll-name-box {
    white-space: nowrap;
}
.game-page .team-matchup-logo-box {
    display: flex;
    justify-content: center;
    max-height: 150px;
    max-width: 150px;
    min-width: 150px;
    min-height: 150px;
}
.game-page .away-team-matchup-logo-box {
    margin-right: 150px;
}
.game-page .home-team-matchup-logo-box {
    margin-left: 150px;
}
.game-page .team-matchup-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.game-page .game-status-header {
    font-size: 40px;
}
.game-page .game-status-container {
    display: grid;
    grid-template-columns: 1fr 0.5fr auto 0.5fr 1fr;
    align-items: center;
    justify-items: center;   
}
.game-page .away-points-container {
    margin-left: 10px;
    padding: 10px;
}
.game-page .home-points-container {
    margin-right: 10px;
    padding: 10px;
}
.game-page .team-points {
    font-size: 50px;
}
.game-page .game-status-final-container {
    background-color: #222222;
    color: white;
    padding: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
}
.game-page .winner-score {
    border-bottom: 2px solid #0D753B;
}
.game-page .loser-score {
    border-bottom: 2px solid #FFFFFF;
}
.game-page .game-info-table-container {
    width: 100%;
}
.game-page .game-info-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.game-page .game-info-table th, .game-page .game-info-table td {
    background-color: #FFFFFF;
    padding: 10px;
    border-bottom: 1px solid #ddd;
    text-align: left;
}
.game-page .game-info-table .game-info-header {
    text-align: center;
    border-bottom: 1px solid #000000;
}
.game-page .game-info-table .showdown-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.game-page .game-info-table .showdown-logo-box {
    width: 30px;
    height: 30px;
}
.game-page .game-info-table .showdown-logo-box img {
    max-height: 100%;
    max-width: 100%;
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.game-page .game-info-table .vs {
    margin: 0 5px;
}

.game-page .game-information-item {
    width: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    border: 2px solid #222222;
}
.game-page .game-information-item-value {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    padding-right: 10px;
}
.game-page .coverage-item {
    gap: 10px;
}
.game-page .game-tv-coverage {
display: flex; justify-content: flex-start; align-items: center;
}
.game-page .coverage-item-divider {
    width: 1px;
    height: 30px;
    background-color: black;
    margin-left: 15px;
    margin-right: 15px;
}
.game-page .broadcast-logo-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
}
.game-page .broadcast-logo-contain {
    display: contents !important;
}
.game-page .broadcast-logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.game-page .game-venue-table-container {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.game-page .team-venue-table-container {
    padding-bottom: 0;
}

.game-page .game-info-venue-schedules {
    display: grid;
    grid-template-columns: 300px auto 300px;
    grid-gap: 20px;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 30px;
    padding-bottom: 30px;
}
.game-page .game-venue-mobile {
    display: none;
}
.game-page .cfc-team-schedule-full {
    display: none;
}
.game-page .cfc-team-schedule-mobile {
    display: block;
    padding-bottom: 20px;
}
.game-page .cfc-team-schedule .mobile .game-logos {
    justify-content: flex-end;
    clip-path: none;
    background-color: inherit;
    padding-right: 0;
}
.game-page .cfc-team-schedule .mobile .special-game-logo {
    width: 25px;
    height: 25px;
    margin-right: 0;
}
.game-page .cfc-team-schedule .mobile .showdown-container {
    justify-content: flex-end;
}
.game-page .cfc-team-schedule .showdown-logo-box {
    margin: 0;
}
.game-page .cfc-team-schedule .mobile .winner {
    position: relative;
}
.game-page .cfc-team-schedule .mobile .winner .team-score-container {
    position: absolute;
    top: 0;
    right: 7px;
    bottom: 0;
    height: 100%;
    width: min-content;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 2px solid #0D753B;
}
.game-page .cfc-team-schedule .mobile .game-location-cell {
    text-align: right;
}
.game-page .cfc-team-schedule .mobile .lower-score .team-score-container {
    padding-right: 7px;
}
.game-page .cfc-team-schedule .mobile .game-tv-networks-cell {
    justify-content: flex-end;
    display: flex;
}
.game-page .cfc-team-schedule .mobile .game-tv-networks-cell .logo-box {
    width: 25px;
    height: 25px;
    margin-right: 0;
}
.game-page .cfc-team-schedule .mobile .title-row td {
    background-color: inherit;
    color: black;
    font-size: 11px !important;
    font-style: italic !important;
    padding-left: 7px;
    padding-top: 1px;
    padding-bottom: 2px;
}
.game-page .team-info-table td {
    background-color: #FFFFFF;
}
.game-page .team-info-table .venue-icon {
    background-color: #F9F9F9;
}

/* End ~ Game */

/* Error Pages */
.error-page .error-container {
    width: 90%;
    margin: auto;
    text-align: center;
}
.error-page .error-grid-box {
    display: flex;
    padding-top: 50px;
    padding-bottom: 50px;
    gap: 50px;
}
.error-page .error-text-container {
    display: flex;
    align-items: center;
}
.error-page .error-title {
    font-size: 70px;
    margin-bottom: 30px;
}
.error-page .error-description {
    font-weight: normal;
}
.error-page .error-divider-bar {
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 3px;
    width: 285px;
    background-color: #988863;
}
.error-page .error-image-container {
    display: flex;
}
.error-page .error-image-container img {
    width: 650px;
    object-fit: contain;
}
.error-page .error-image-container p {
    font-size: 12px;
    font-style: italic !important;
    text-align: center;
}

/* End ~ Error Pages */

/* Article Styling */
.article-container {
    padding-top: 40px;
    padding-bottom: 40px;
}
.article {
    width: 55%;
    margin: auto;
    padding-top: 20px;
}
.article .article-title {
    font-size: 50px;
    margin-bottom: 10px;
    color: #333333;
}
.article .article-summary {
    margin-bottom: 20px;
    color: #666;
}
.article .article-information {
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333333;
}
.article .article-authors {
    display: flex;
    align-items: center;
    gap: 0 20px;
}
.article .article-author {
    display: flex;
    align-items: center;
}
.article .article-author a {
    font-weight: bold !important;
}
.article .author-separator {
    display: inline-block;
    margin: 0 5px;
    color: #333333
}
.article .article-author-photo-container {
    display: flex;
    width: 35px;
    height: 35px;
    margin-right: 10px;
    flex: 0 0 auto;
}
.article .article-author-photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}
.article .article-updated {
    margin-top: 8px;
    font-size: 12px;
}
.article .component-image, 
.article .component-text, 
.article .component-video, 
.article .component-embed,
.article .component-carousel {
    margin-bottom: 40px;
}
.article .component-text-content {
    font-size: 18px;
    color: #333333;
}
.article .component-text-content blockquote {
    background-color: #F9F9F9;
    border-left: 4px solid #656565;
    padding: 15px 20px;
    margin-top: 10px;
    margin-bottom: 20px;
    font-style: italic;
    font-size: 17px;
}
.article .component-text-content h1,
.article .component-text-content h2,
.article .component-text-content h3,
.article .component-text-content h4,
.article .component-text-content h5,
.article .component-text-content h6 {
    margin-bottom: 10px;
}
.article .component-text-content h1 {
    font-size: 40px;
}
.article .component-text-content p {
    text-indent: 20px;
    line-height: 1.75;
}
.article .component-text-content ol, .article .component-text-content ul {
    font-size: 15px;
    margin-top: 10px;
    margin-bottom: 20px;
}
.article .component-text-content li {
    list-style-position: inside;
    text-indent: 25px;
    line-height: 1.75;
}
.article .component-text-content > ol, .article .component-text-content > ul {
    padding: 15px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
.article .component-text-content > ol > li, .article .component-text-content > ul > li {
    margin: 10px 0;
}
.article .component-text-content ol ol, .article .component-text-content ul ul {
    margin-top: 5px;
    margin-bottom: 5px;
}
.article .component-text-content ol ol li, .article .component-text-content ul ul li {
    text-indent: 35px;
}
.article .component-text-content ol ol li {
    list-style-type: lower-alpha;
}
.article .component-text-content ol ol ol, .article .component-text-content ul ul ul {
    margin-top: 5px;
    margin-bottom: 5px;
}
.article .component-text-content ol ol ol li, .article .component-text-content ul ul ul li {
    text-indent: 45px;
}
.article .component-text-content ol ol ol li {
    list-style-type: lower-roman;
}
.article .component-text-content a {
    text-decoration: none;
    color: inherit;
}
.article .component-text-content .article-scroll-container {
    overflow: hidden;
    overflow-x: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}
.article .component-text-content table {
    width: 100%;
    border: 1px solid #333333;
    border-collapse: collapse;
    text-align: center;
    font-size: clamp(10px, 2vw, 18px);
}
.article .component-text-content th, .article .component-text-content td {
    border: 1px solid #333333;
    border-collapse: collapse;
    padding: 5px;
}
.article .component-text-content .table-one {
    text-align: left;
    font-size: clamp(10px, 2vw, 12px);
}
.article .component-text-content .table-one th, .article .component-text-content .table-one td {
    padding: 10px;
    vertical-align: baseline;
}
.article .component-text-content p:empty::before,
.article .component-text-content h1:empty::before,
.article .component-text-content h2:empty::before,
.article .component-text-content h3:empty::before,
.article .component-text-content h4:empty::before,
.article .component-text-content h5:empty::before,
.article .component-text-content h6:empty::before {
    content: "\00a0";
    display: inline-block;
    height: 20px;
}
.article .image-img-title {
    color: #333333;
    margin-bottom: 10px;
}
.article .image-title-value {
    text-decoration: none;
    color: inherit;
    font-size: 40px;
    font-weight: bold !important;
}
.article .image-img-container {
    width: 100%;
    height: auto;
    overflow: hidden;
    display: flex;
}
.article .image-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.article .image-caption-container {
    display: block;
    align-items: center;
    bottom: 10px;
    left: 10px;
    padding-top: 5px;
    font-size: 12px;
    color: #888888;
}
.article .component-image-caption {
    display: inline-block;
}
.article .component-image-credit-license-container {
    display: flex;
    align-items: center;
    gap: 0 5px;
}
.article .component-image-credit {
    display: inline-block;
    font-size: 12px;
    color: #888888;
}
.article .component-image-credit a {
    color: inherit;
    text-decoration: none;
    position: relative;
}
.article .component-image-credit a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -3px;
    left: 50%;
    background-color: #888888;
    transition: all 0.3s ease-in-out;
}
.article .component-image-credit a:hover::after {
    width: 100%;
    left: 0;
}
.article .component-image-license, .article .component-image-license a {
    display: flex;
    align-items: center;
}
.article .license-icon {
    width: 14px;
    height: 14px;
}
.article .article-components {
    margin-top: 40px;
    margin-bottom: 40px;
}
.article .component-video-file, 
.article .component-embed-url {
    width: 100%;
    height: auto;
    border-radius: 8px;
}
.no-scroll {
    overflow: hidden;
}
.article .component-carousel {
    position: relative;
    text-align: center;
    margin: auto;
    margin-bottom: 40px;
}
.article .carousel-container {
    width: 100%;
    height: 400px;
}
.article .carousel-image-box {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}
.article .carousel-image {
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.article .carousel-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.article .carousel-image-caption {
    margin-top: 5px;
    font-size: 16px;
    font-style: italic !important;
}
.article .carousel-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.92);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.article .carousel-modal.show {
    opacity: 1;
}
.article .carousel-modal.hide {
    opacity: 0;
}
.article .carousel-modal-content {
    position: relative;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.article .carousel-modal-body {
    width: 100%;
    height: 100%;
}
.article .carousel-modal-body h1 {
    text-align: center;
    color: white;
    margin-bottom: 40px;
}
.article .carousel-image-full-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    width: 100%;
    justify-content: center;
    gap: 0 10px;
}
.article .carousel-image-container {
    width: 100%;
    height: 100vh;
}
.article .carousel-modal-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.article .carousel-modal-caption-container {
    display: flex;
    justify-content: space-between;
    position: absolute;
    bottom: 10px;
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
}
.article .carousel-modal-caption {
    align-self: center;
    padding: 3px 5px;
    background-color: #ccc;
}
.article .carousel-modal-caption p {
    font-size: 12px;
    font-style: italic !important;
    color: #000000;
}
.article .carousel-modal-caption.carousel-image-title {
    text-align: left;
}
.article .carousel-modal-caption.carousel-image-counter {
    text-align: right;
    white-space: nowrap;
}
.article .carousel-modal-close {
    position: absolute;
    top: 0;
    right: 10px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}
.article .carousel-arrow-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.article .carousel-modal-prev, .article .carousel-modal-next {
    cursor: pointer;
    width: auto;
    padding: 16px;
    color: #fff;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 3px;
    user-select: none;
}
.article .carousel-modal-prev:hover, .article .carousel-modal-next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}
.articles {
    width: 60%;
    margin: auto;
    padding-bottom: 60px;
}
.articles .articles-title-container {
    padding-top: 60px;
    padding-bottom: 5px;
    width: fit-content;
    margin: auto;
    border-bottom: 2px solid #222222;
    margin-bottom: 60px;
}
.articles .articles-title-container h1 {
    text-align: center;
    font-size: 55px;
}
.articles .load-more-button-container {
    cursor: pointer;
    text-align: center;
    margin-bottom: 40px;
}
.articles .load-more-button {
    width: fit-content;
    margin: auto;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #222222;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 10px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.articles .load-more-button:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}
.articles .lottie-loading-container {
    display: none;
    width: 75px;
    height: 75px;
    margin: auto;
}
/* End ~ Article Styling */

/* Home Page */
.home-page .home-page-container {
    padding-top: 50px;
    padding-left: 20px;
    padding-right: 20px;
}
.home-page .home-page-main-container {
    display: grid;
    grid-template-columns: 25% 50% 25%;
    grid-template-rows: auto auto;
}
.home-page .home-page-left-container {
    padding-right: 20px;
}
.home-page .home-schedule-title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: 2px solid #222222;
}
.home-page .home-schedule-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 20px;
    width: 100%;
    background-color: #222222;
    color: white;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
}
.home-page .home-schedule-name {
    width: 100%;
    font-size: 20px;
    text-align: center;
}
.home-page .home-schedule-title-week {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 20px;
    width: fit-content;
    padding-left: 15px;
    padding-right: 15px;
    white-space: nowrap;
}
.home-page .home-schedule-week {
    width: 100%;
    font-size: 18px;
    text-align: right;
}
.home-page .home-schedule-button-container {
    text-align: center;
    padding-bottom: 60px;
}
.home-page .home-schedule-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0 20px;
    padding: 10px;
    padding-left: 15px;
    font-size: 16px;
    background-color:#222222;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 5px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.home-page .home-schedule-button:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}
.home-page .home-page-right-container {
    padding-left: 20px;
}
.home-page .featured-article {
    background-color: #FFFFFF;
}
.home-page .featured-article-image, .home-page .image-img-container {
    display: flex;
    width: 100%;
    height: 225px;
}
.home-page .featured-article-image {
    height: 450px;
}
.home-page .featured-article-image img, .home-page .image-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.home-page .extended-article-container {
    margin-top: 40px;
}
.home-page .extended-article-container {
    display: flex;
    background-color: #F9F9F9;
    padding-bottom: 0;
    margin-bottom: 40px;
}
.home-page .extended-article-image {
    flex-basis: 50%;
    flex-grow: 1;
    flex-shrink: 1;
}
.home-page .article-card-text {
    padding: 10px;
}
.home-page .article-card-text.extended-article-text {
    margin: auto;
    flex-basis: 50%;
    flex-grow: 1;
    flex-shrink: 1;
}
.home-page .article-card-text.featued-card-text {
    padding: 0 10px;
    text-align: center;
}
.home-page .compact-article-container {
    background-color: #F9F9F9;
    margin-bottom: 40px;
}
.home-page .article-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.home-page .article-title-link:hover {
    transform: translateY(-1px);
}
.home-page .article-title-link.featured-title-link {
    height: fit-content;
}
.home-page .article-title {
    text-decoration: none;
    color: inherit;
}
.home-page .article-title.featured-card-title {
    font-size: 40px;
    margin-top: 0;
    padding: 30px 0;
}
.home-page .article-excerpt-text {
    margin-top: 5px;
    font-size: 14px;
    color: #888888;
}
.home-page .article-excerpt-text.featured-card-excerpt {
    margin-top: 0;
    padding-top: 30px;
    font-size: 20px;
}
.home-page .article-collection-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}
.home-page .article-collection-container.featured-collection-container {
    justify-content: center;
    padding-bottom: 30px;
}
.home-page .article-card-collection {
    color: #888888;
    font-style: italic !important;
    text-align: left;
    font-size: 12px;
}
.home-page .article-card-collection.featured-card-collection {
    text-align: center;
}

/* End ~ Home Page */


/* Responsive */
@media (max-width: 1500px) {
    .cfc-team-schedule .game-date {
        font-size: 13px !important;
    }
}

@media (max-width: 1400px) {
    #team-page .organization-content {
        grid-template-columns: 1fr 30%;
    }
    .organization-teams-container .organization-teams-table .conference-division-header th .sub-division-text {
        font-size: 22px;
    }
    .organization-teams-container .organization-teams-table .conference-division-header th .division-text {
        font-size: 22px;
    }
    .organization-teams-container .organization-teams-table .league-division-header th .division-text {
        font-size: 22px;
    }
    .organization-teams-container .organization-teams-table .league-header {
        font-size: 20px;
    }
    .organization-teams-container .org-teams-table-team-link.team-name {
        font-size: 18px;
    }
    .organization-teams-container .org-teams-table-team-link.team-record {
        font-size: 18px;
    }
    .organization-teams-container .org-teams-table-team-link.team-location {
        font-size: 18px;
    }
}

@media (max-width: 1300px) {
    .home-page .home-page-main-container {
        grid-template-columns: 25% 75%;
    }
    .home-page .home-page-left-container {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    .home-page .home-page-center-container {
        grid-column: 2 / 3;
        grid-row: 1 / 2;
    }
    .home-page .home-page-right-container {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
        padding-left: 0;
    }
    .home-page .compact-article-container {
        display: flex;
        background-color: #F9F9F9;
        padding-bottom: 0;
    }
    .organization-content .home-page .compact-article-container {
        display: block;
    }
    .home-page .compact-article-image {
        flex-basis: 50%;
        flex-grow: 1;
        flex-shrink: 1;
    }
    .home-page .article-card-text {
        margin: auto;
        flex-basis: 50%;
        flex-grow: 1;
        flex-shrink: 1;
    }

    /* Team Schedule */
    .cfc-team-schedule th:nth-child(9) {
        padding-right: 7px;
    }
    .cfc-team-schedule th {
        font-size: 13px !important;
    }
    .cfc-team-schedule td, .cfc-team-schedule a {
        font-size: 13px !important;
    }
    .cfc-team-schedule td.winner, .cfc-team-schedule td.lower-score {
        font-size: 13px !important;
    }
    
    .team-body {
        display: block;
    }
    .team-body .classification-venue-container {
        display: flex;
        margin: 10px;
        gap: 10px;
        justify-content: center;
        padding-top: 20px;
    }
    .team-body .team-classification-table-container {
        min-width: 50%;
    }
    .team-venue-table-container {
        min-width: 50%;
    }
    #team-games-container {
        padding-right: 0;
    }
    .all-logos-container .logo-grid-box {
        grid-template-columns: repeat(4, 1fr);
    }

    .article .article-title {
        font-size: 40px;
    }
    .article .component-text-content h1 {
        font-size: 30px;
    }
    .article .image-title-value {
        font-size: 30px;
    }
    .articles {
        width: 70%;
    }

    .error-page .error-image-container img {
        width: 550px;
    }
    .error-page .error-description {
        font-size: 20px;
    }

}

@media (max-width: 1200px) {
    .game-page .team-matchup-logo-box {
        max-height: 125px;
        max-width: 125px;
        min-width: 125px;
        min-height: 125px;
    }
    .game-page .image-container {
        height: 125px;
        width: 100%;
        object-fit: contain;
    }
    .game-page .home-team-matchup-logo-box {
        margin-left: 125px;
    }
    .game-page .away-team-matchup-logo-box {
        margin-right: 125px;
    }
    .game-page .team-ranking-div {
        font-size: 15px;
    }
    .game-page .away-ranking-div {
        grid-template-columns: auto 20px !important;
    }
    .game-page .home-ranking-div {
        grid-template-columns: 20px auto !important;
    }
    .game-page .ranking-poll-logo-box {
        width: 20px;
        height: 20px;
    }
    .game-page .team-points {
        font-size: 40px;
    }
    .game-page .game-status-header {
        font-size: 35px;
    }
    .game-page .game-info-venue-schedules {
        grid-template-columns: auto 300px;
    }
    .game-page .schedule-venue-container {
        grid-column: 1;
        grid-row: 1;
    }
    .game-page .game-info-table-container {
        grid-column: 2;
    }
    .game-page .game-venue-full {
        display: none;
    }
    .game-page .game-venue-mobile {
        display: block;
        padding-top: 20px;
    }
    .article .article-title {
        font-size: 30px;
    }

    .error-page .error-image-container img {
        width: 500px;
    }
}

@media (max-width: 1100px) {
    .footer-container .footer-logo-box {
        height: 60px;
    }
    .footer-container .partner-logo-container {
        width: 65px;
        height: 65px;
    }

    .home-page .home-page-main-container {
        grid-template-columns: 30% 70%;
    }

    .game-page .home-team-matchup-logo-box {
        margin-left: 100px;
    }
    .game-page .away-team-matchup-logo-box {
        margin-right: 100px;
    }
    #classification-filter-container .filter-title h1 {
        font-size: 45px;
    }

    .organization-teams-container .organization-teams-table .conference-division-header th .division-header-logo {
        height: 40px;
        width: 40px;
    }

    .all-logos-container .logo-grid-box.choose-grid-box {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .error-page .error-grid-box {
        display: block;
    }
    .error-page .error-text-container {
        display: block;
        padding-bottom: 50px;
    }
    .error-page .error-image-container {
        display: block;
    }
    .error-page .error-image-container img {
        height: auto;
        width: 75%;
    }

    .articles {
        width: 75%;
    }
}

@media (max-width: 1000px) {
    .header-container .dropdown .header-option, .header-container .dropdown .header-classification-option {
        padding: 0 10px;
        font-size: 16px;
    }
    .header-container .dropdown .header-classification-option .header-classification-logo {
        height: 28px;
        width: 34px;
    }

    .week-carousel-container {
        width: 85%;
    }
    .week-carousel .full-date {
        display: none;
    }
    .week-carousel .short-date {
        display: block;
    }
    /* Team Schedule */
    .cfc-team-schedule-scroll-container {
        overflow: hidden;
        overflow-x: scroll;
        margin-bottom: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    }
    .cfc-team-schedule table {
        width: 1000px;
        margin-bottom: 5px;
    }
    .game-page .cfc-team-schedule table {
        width: 100%;
    }

    .game-page .game-info-table th, .game-page .game-info-table td {
        font-size: 14px;
    }
    .game-page .game-info-venue-schedules {
        grid-template-columns: auto 250px;
    }
    .game-page .game-info-table .showdown-logo-box {
        width: 25px;
        height: 25px;
    }
    .game-page .team-matchup-logo-box {
        max-height: 75px;
        max-width: 75px;
        min-width: 75px;
        min-height: 75px;
    }
    .game-page .image-container {
        height: 75px;
        width: 100%;
        object-fit: contain;
    }
    .game-page .home-team-matchup-logo-box {
        margin-left: 50px;
    }
    .game-page .away-team-matchup-logo-box {
        margin-right: 50px;
    }
    .game-page .team-points {
        font-size: 30px;
    }
    .game-page .game-status-header {
        font-size: 20px;
    }
    
    .organization-teams-container .organization-teams-table .conference-division-header th .conference-division-tab .combined-logo-container {
        order: 2;
    }
    .organization-teams-container .organization-teams-table .conference-division-header th .combined-header-logo {
        height: 30px;
        width: 30px;
    }
    .organization-teams-container .organization-teams-table .conference-division-header th .vertical-bar {
        height: 25px;
    }
    .organization-teams-container .organization-teams-table .conference-division-header th .division-header-logo {
        height: 30px;
        width: 30px;
    }
    .organization-teams-container .organization-teams-table .conference-division-header th .division-text {
        font-size: 16px;
    }
    .organization-teams-container .organization-teams-table .conference-division-header th .conference-division-tab {
        grid-template-columns: 1fr auto;
    }
    .organization-teams-container .organization-teams-table .conference-division-header th .conference-division-tab .placeholder-div {
        display: none;
    }
    .organization-teams-container .organization-teams-table .conference-division-header th .sub-division-header-logo {
        order: 2;
        height: 25px;
        width: 25px;
    }
    .organization-teams-container .organization-teams-table .conference-division-header th .sub-division-text {
        order: 1;
        font-size: 16px;
    }
    .organization-teams-container .organization-teams-table .league-header {
        font-size: 14px;
    }
    .organization-teams-container .organization-teams-table .league-header th .league-division-left-text {
        font-size: 12px;
    }
    .organization-teams-container .organization-teams-table .league-division-header th .division-header-content {
        grid-template-columns: 1fr auto;
    }
    .organization-teams-container .organization-teams-table .league-division-header th .division-header-content .placeholder-div {
        display: none;
    }
    .organization-teams-container .org-teams-table-team-cell.no-teams {
        font-size: 14px;
    }
    .organization-teams-container .org-teams-table-team-logo-div {
        width: 30px;
        height: 30px;
    }
    .organization-teams-container .organization-teams-table .league-division-header th .division-header-logo {
        order: 2;
        grid-area: 1 / 2 / 2 / 3;
        height: 25px;
        width: 25px;
    }
    .organization-teams-container .organization-teams-table .league-division-header th .division-text {
        order: 1;
        grid-area: 1 / 1 / 2 / 2;
        font-size: 16px;
        justify-self: start;
        text-align: left;
    }
    .organization-teams-container .org-teams-table-team-link.team-name {
        font-size: 14px;
    }
    .organization-teams-container .org-teams-table-team-link.team-record {
        font-size: 14px;
        padding-right: 7px;
    }
    .organization-teams-container .organization-teams-table-record-th {
        padding-right: 10px;
    }
    .organization-teams-container .organization-teams-table-location-th {
        display: none;
    }
    .organization-teams-container .org-teams-table-team-cell.location {
        display: none;
    }


    .organization-header-container h1 {
        font-size: 45px;
    }
    .organization-header-container .organization-header-logo-box {
        width: 160px;
    }
    .organization-content .team-info-table td {
        font-size: 14px;
    }
    .organization-teams-container .organization-teams-table .league-header th .division-text {
        font-size: 16px;
    }

    .article .component-text-content {
        font-size: 16px;
    }
    .article .component-text-content blockquote {
        font-size: 15px;
    }

    .about .article .article-title {
        font-size: 50px;
    }
}

@media (max-width: 900px) {
    .footer-container .footer-links-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        align-items: center;
        text-align: center;
    }
    .footer-container .partner-container {
        grid-column: 1 / -1;
        order: 1;
        width: 100%;
        margin-bottom: 10px;
    }
    .footer-container .footer-logo-box {
        grid-column: 1;
        order: 2;
        width: 100%;
        text-align: right;
    }
    .footer-container .social-media-links {
        grid-column: 2;
        order: 2;
        width: 100%;
        text-align: right;
        justify-content: flex-end;
    }

    .announcement-bar .carousel-item p {
        font-size: 14px;
    }
    .header-container .dropdown {
        display: none;
    }
    .header-container .hamburger {
        display: inline-block;
    }
    
    .home-page .home-page-container {
        padding-left: 40px;
        padding-right: 40px;
    }
    .home-page .home-page-main-container {
        grid-template-columns: 1fr;
    }
    .home-page .home-page-left-container {
        grid-column: 1 / 2;
        grid-row: 3 / 4;
        padding-right: 0;
        padding-bottom: 20px;
    }
    .home-page .home-page-center-container {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
    }
    .home-page .home-page-right-container {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }
    .organization-content .home-page .compact-article-container {
        display: flex;
    }

    #classification-filter-container {
        padding-bottom: 20px;
    }
    #classification-filter-container .filter-title {
        padding-bottom: 25px;
    }
    #classification-filter-container {
        flex-direction: column;
    }
    #classification-filter-container .filter-left-content {
        text-align: center;
    }
    #classification-filter-container .filter-title h1 {
        font-size: 35px;
    }
    #classification-filter-container .filter-left-content .filter-bar-separator {
        width: 300px;
    }
    #classification-filter-container .filter-left-content .filter-logo-container {
        justify-content: center;
        flex-direction: column;
    }
    #classification-filter-container .filter-logo-container h3 {
        font-size: 1em;
    }
    #classification-filter-container .dropdowns-container label {
        font-size: 11px;
    }
    #classification-filter-container .dropdown-group {
        min-width: 100px;
        max-width: 100px;
    }
    #classification-filter-container select {
        width: 100px;
        font-size: 11px;
    }
    .cfc-full-schedule .custom-dropdown-options {
        width: 60px;
    }
    .cfc-full-schedule .dropdown-option {
        font-size: 12px;
    }

    .cfc-team-schedule-full {
        display: none;
    }
    .cfc-team-schedule-mobile {
        display: block;
        padding-bottom: 20px;
    }
    .cfc-team-schedule .team-schedule-header-cell {
        padding: 0 !important;
    }
    .cfc-team-schedule-mobile-container table {
        width: 100%;
    }
    .cfc-team-schedule .game-status-and-logo-bar {
        width: 55%;
        text-align: left;
    }
    .cfc-team-schedule .game-filler-cell {
        width: 11%;
    }
    .cfc-team-schedule .showdown-special-logo-cell {
        width: 33%;
    }
    .cfc-team-schedule .mobile .showdown-logo-box {
        margin: 0;
    }
    .cfc-team-schedule .mobile .away-team {
        padding-top: 2px;
    }
    .cfc-team-schedule .mobile .home-team {
        padding-bottom: 2px;
        padding-left: 7px;
    }
    .cfc-team-schedule .mobile .winner {
        position: relative;
    }
    .cfc-team-schedule .mobile .winner .team-score-container {
        position: absolute;
        top: 0;
        right: 7px;
        bottom: 0;
        height: 100%;
        width: min-content;
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        border-bottom: 2px solid #0D753B;
    }
    .cfc-team-schedule .mobile .home.winner .team-score-container {
        top: -4px;
    }
    .cfc-team-schedule .mobile .lower-score .team-score-container {
        padding-right: 7px;
    }
    .cfc-team-schedule .mobile .title-row td {
        background-color: inherit;
        color: black;
        font-size: 11px !important;
        font-style: italic !important;
        padding-left: 7px;
        padding-top: 1px;
        padding-bottom: 2px;
    }
    .cfc-team-schedule .mobile .showdown-container {
        justify-content: flex-end;
    }
    .cfc-team-schedule .mobile .game-logos {
        height: auto;
        justify-content: flex-end;
        clip-path: none;
        background-color: inherit;
        margin-bottom: 0;
        padding-left: 0;
        padding-right: 0;
    }
    .cfc-team-schedule .mobile .special-game-logo {
        width: 25px;
        height: 25px;
        margin: 0;
    }
    .cfc-team-schedule .mobile .game-tv-networks-cell {
        justify-content: flex-end;
        display: flex;
    }
    .cfc-team-schedule .mobile .game-tv-networks-cell .logo-box {
        width: 25px;
        height: 25px;
        margin-right: 0;
    }
    .cfc-team-schedule .mobile .game-location-cell {
        text-align: right;
    }

    .team-container .team-name h1 {
        font-size: 50px;
    }

    .game-page .game-title-logo {
        width: 30px;
        height: 30px;
        min-width: 30px;
        min-height: 30px;
    }

    #team-page .organization-content {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px 0;
    }
    #team-page .organization-content .member-content {
        padding-right: 0;
        padding-bottom: 0;
    }
    .all-logos-container .logo-grid-box {
        grid-template-columns: repeat(3, 1fr);
    }

    .article {
        width: 80%;
    }
    .article .carousel-container {
        height: 300px;
    }
    .articles {
        width: 85%;
    }

    
    .all-logos-container .logo-grid-box .team-info-table .logo-cell .logo-cell-content p {
        font-size: 14px;
    }
}

@media (max-width: 750px) {
    .game-page .home-team-matchup-logo-box {
        margin-left: 25px;
    }
    .game-page .away-team-matchup-logo-box {
        margin-right: 25px;
    }
    .game-page .game-info-venue-schedules {
        grid-gap: 10px;
        margin-left: 10px;
        margin-right: 10px;
    }
    .game-page .game-venue-mobile {
        padding-top: 10px;
    }
    .game-page .cfc-team-schedule-mobile {
        padding-bottom: 10px;
    }

    .all-logos-container .logo-grid-box.choose-grid-box {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .footer-container .footer-links-container {
        display: flex;
        justify-content: center;
        flex-direction: column;
        margin: auto;
        align-items: center;
        text-align: center;
    }
    .footer-container .social-media-links {
        order: 3;
        margin-left: 0;
        justify-content: center;
    }
    .footer-container .footer-legal-bottom-container {
        flex-direction: column-reverse;
        padding: 15px;
    }
    .footer-container .footer-legal {
        text-align: center;
        padding-bottom: 0;
    }
    .footer-container .footer-logo-box {
        margin-bottom: 10px;
    }

    .home-page .home-page-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .home-page .article-title.featured-card-title {
        font-size: 30px;
    }
    .home-page .article-excerpt-text.featured-card-excerpt {
        font-size: 15px;
    }
    .home-page .extended-article-container, .home-page .compact-article-container, .organization-content .home-page .compact-article-container {
        display: block;
    }
    .home-page .extended-article-image, .home-page .compact-article-image {
        display: block;
    }
    .home-page .featured-article-image, .home-page .image-img-container {
        height: 100%;
    }
    .home-page .article-card-text {
        display: block;
    }

    #classification-filter-container { 
        width: 100%;
    }
    #classification-filter-container .filter-title h1 {
        font-size: 25px;
    }
    #classification-filter-container .filter-left-content .filter-bar-separator {
        width: 240px;
    }
    #classification-filter-container .filter-left-content .filter-logo-container img {
        width: 175px;
    }
    .year-calendar-container {
        margin-bottom: 5px;
    }
    .week-carousel-container {
        width: 90%;
    }
    .week-carousel .week {
        font-size: 12px;
    }
    .week-carousel .full-date {
        display: none;
    }
    .week-carousel .short-date {
        display: block;
    }
    .team-container {
        display: flex;
        flex-direction: column-reverse;
        padding-left: 10px !important;
    }
    .team-container .team-rank-name-container {
        display: contents;
    }
    .team-container .team-rankings {
        height: fit-content;
        margin: auto;
        display: flex;
        gap: 15px;
        margin-top: 15px;
        align-items: center;
        border: 2px solid #222222;
    }
    .team-container .team-ranking-div {
        margin-bottom: 0;
    }
    .team-container .ranking-bar-separator {
        height: 30px;
        width: 3px;
        background-color: black;
    }
    .team-container .team-name {
        padding-top: 15px;
    }
    .team-container .team-name h1 {
        font-size: 35px;
        text-align: center;
    }
    .team-container .team-location {
        padding-top: 10px;
        text-align: center;
    }
    .team-container .team-logo {
        height: 175px;
        width: 250px;
    }
    .team-body {
        grid-template-columns: 1fr;
    }
    .team-body .team-classification-table-container {
        grid-column: 1;
        grid-row: 1;
        width: 100%;
    }
    #team-games-container {
        grid-column: 1;
        grid-row: 2;
        padding-right: 0;
    }
    .team-venue-table-container {
        grid-column: 1;
        grid-row: 3;
        width: 100%;
    }
    /* Team Schedule */
    .cfc-team-schedule .cfc-team-schedule-header-container h2 {
        font-size: 16px;
    }
    .cfc-team-schedule .team-schedule-no-games {
        font-size: 16px;
    }
    .cfc-team-schedule .team-season-select-container select {
        font-size: 14px;
    }
    .cfc-team-schedule .logo-box {
        width: 20px;
        height: 20px;
    }
    .cfc-team-schedule th {
        font-size: 12px !important;
    }
    .cfc-team-schedule td, .cfc-team-schedule a {
        font-size: 12px !important;
    }
    .cfc-team-schedule td.winner, .cfc-team-schedule td.lower-score {
        font-size: 12px !important;
    }
    .cfc-team-schedule-header-container h2 {
        display: flex;
        font-size: 15px;
    }
    .cfc-team-schedule .mobile .showdown-logo-box {
        width: 25px;
        height: 25px;
    }
    .cfc-team-schedule .mobile .special-game-logo {
        width: 25px;
        height: 25px;
    }
    .cfc-team-schedule .mobile td, .cfc-team-schedule .mobile a {
        font-size: 13px !important;
    }
    .cfc-team-schedule .mobile .logo-box {
        width: 30px;
        height: 30px;
    }
    .cfc-team-schedule .showdown-logo-box {
        width: 15px;
        height: 15px;
    }

    .game-page .game-title-container h3 {
        font-size: 14px;
    }
    .game-page .game-titles-container {
        flex-direction: column;
        align-items: center;
    }
    .game-page .game-title-container {
        font-size: 10px;
    }
    .game-page .game-title-logo {
        width: 20px;
        height: 20px;
        min-width: 20px;
        min-height: 20px;
    }
    .game-page .game-header-main h2 {
        width: 95%;
        font-size: 1.3em;
    }
    .game-page .full-away-container{
        padding-top: 20px;
    }
    .game-page .full-home-container{
        padding-bottom: 20px;
    }
    .mobile-game-matchup-container .cfc-team-schedule .showdown-logo-box {
        width: 40px;
        height: 30px;
        margin: 0;
    }
    .mobile-game-matchup-container .game-vs-text {
        font-size: 18px !important;
        margin: 0 5px;
    }
    .mobile-game-matchup-container .cfc-team-schedule .logo-box {
        width: 40px;
        height: 30px;
    }
    .team-body .classification-venue-container {
        display: block;
        margin: 0;
    }
    .game-page .game-matchup-container {
        display: none;
    }
    .game-page .flex-display {
        width: 100%;
        align-items: center;
    }
    .game-page .team-ranking-div {
        flex-direction: column-reverse;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        white-space: nowrap;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 0;
    }
    .game-page .home-ranking-div {
        flex-direction: column;
    }
    .game-page .ranking-bar-separator {
        height: 20px;
        width: 2px;
        background-color: black;
    }
    .game-page .away-team-matchup-logo-box {
        margin-right: 0;
    }
    .game-page .home-team-matchup-logo-box {
        margin-left: 0;
    }
    .game-page .team-matchup-container {
        display: flex;
        column-gap: 10px;
    }
    .game-page .team-matchup-container .team-name {
        display: flex;
        align-items: center;
        font-size: 20px;
    }
    .game-page .game-status-header {
        margin-left: 10px;
        font-size: 25px;
    }
    .game-page .team-points {
        font-size: 25px;
    }
    .game-page .away-points-container {
        margin-left: 0;
    }
    .game-page .home-points-container {
        margin-right: 0;
    }
    .game-page .team-matchup-logo-box {
        max-height: 60px;
        max-width: 60px;
        min-width: 60px;
        min-height: 60px;
    }
    .game-page .poll-image-container {
        max-height: 100%;
    }
    .game-page .poll-image-container.team-logo {
        height: 100%;
    }
    .game-page .mobile-matchup-container {
        background-color: #FFFFFF;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .game-page .mobile-game-matchup-container {
        display: block;
        background-color: #FFFFFF;
        margin-left: 10px;
        margin-right: 10px;
        margin-top: 20px;
        margin-bottom: 20px;
        border-radius: 20px;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    }
    .game-page .top-info-bar {
        align-items: center;
        display: flex;
        justify-content: space-between;
        padding-top: 20px;
        padding-bottom: 20px;
        padding-right: 10px;
        background-color: #F9F9F9;
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    .game-page .game-status-container {
        display: block;
    }
    .game-page .ranking-poll-logo-box.team-logo {
        margin: auto;
        margin-bottom: 2px;
    }
    .game-page .away-team-matchup-main, .game-page .home-team-matchup-main {
        justify-content: space-between;
        margin-top: 10px;
        margin-left: 10px;
    }
    .game-page .home-team-matchup-main {
        margin-bottom: 10px;
    }
    .game-page .game-information-content {
        background-color: #F9F9F9;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .game-page .game-information-item-value {
        margin: auto;
    }
    .game-page .game-information-item {
        justify-content: space-between;
        min-height: 40px;
    }
    .game-page .game-info-venue-schedules {
        display: block;
        margin-top: 30px;
    }
    .game-page .schedule-venue-container {
        padding-top: 30px;
    }
    .game-page .game-venue-mobile {
        padding-top: 30px;
    }
    .game-page .cfc-team-schedule-mobile {
        padding-bottom: 30px;
    }
    /* Organization Page */
    .organization-header-container {
        display: flex;
        flex-direction: column-reverse;
    }
    .organization-header-container .organization-title-container {
        padding-top: 15px;
    }
    .organization-header-container .organization-title-container h1 {
        font-size: 35px;
        text-align: center;
    }
    .organization-header-container .organization-header-logo-box {
        height: 125px;
        width: 200px;
    }
    .organization-header-container .organization-header-logo-box img {
        max-height: 100%;
        max-width: 100%;
        min-height: 100%;
        min-width: 100%;
    }
    #team-page .organization-content {
        display: flex;
        flex-direction: column-reverse;
        gap: 20px 0;
    }
    #team-page .organization-content .organization-classification-table-container {
        min-width: auto;
    }

    .all-logos-container .logo-grid-box {
        grid-template-columns: repeat(2, 1fr);
    }
    .all-logos-container .logo-heading {
        margin: auto;
        white-space: normal;
        width: 100%;
    }

    .article {
        width: 90%;
    }
    .article .article-title {
        margin-bottom: 5px;
    }
    .article .image-img-title {
        margin-bottom: 5px;
    }
    .articles .articles-title-container {
        padding-top: 50px;
        margin-bottom: 50px;
    }
    .articles .articles-title-container h1 {
        font-size: 50px;
    }

    .about .article .article-title {
        font-size: 40px;
        margin-bottom: 35px;
    }
    .about .article .component-text-content h1, .about .article .image-img-title {
        font-size: 35px;
    }
    .about .article .component-text-content p, .about .article .component-text-content ol, .about .article .component-text-content ul {
        font-size: 16px;
    }
    .about .article .component-text-content h3 {
        font-size: 22px;
    }

    .choose-organization-container .organization-table-h1 {
        font-size: 20px;
    }
    .choose-organization-container .all-logos-container.choose-logo-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .error-page .error-container {
        width: 100%;
    }
    .error-page .error-text-container {
        padding-left: 15px;
        padding-right: 15px;
    }
    .error-page .error-image-container img {
        width: 100%;
    }
    .error-page .error-divider-bar {
        width: 250px;
        max-width: 100%;
    }
}

@media (max-width: 450px) {
    .announcement-bar .carousel-item p {
        font-size: 10px;
    }

    .footer-container .social-media-icon {
        height: 25px;
        width: 25px;
    }
    .footer-container .footer-logo-box {
        height: 50px;
    }
    .footer-container .partner-logo-container {
        height: 55px;
        width: 55px;
    }
    .footer-container a {
        font-size: 14px;
    }

    .home-page .home-page-container {
        padding: 5px;
        padding-top: 20px;
    }
    .home-page .home-schedule-button-container {
        padding-bottom: 100px;
    }
    .home-page .article-title.featured-card-title {
        font-size: 26px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .home-page .article-excerpt-text.featured-card-excerpt {
        margin-top: 0;
        padding-top: 20px;
    }
    .home-page .article-collection-container.featured-collection-container {
        padding-bottom: 20px;
    }

    #classification-filter-container .filter-left-content .filter-bar-separator {
        width: 50%;
    }
    #classification-filter-container .dropdown-group {
        min-width: 80px;
        max-width: 80px;
    }
    #classification-filter-container .dropdowns-container {
        gap: 10px;
    }
    #classification-filter-container .dropdowns-container label {
        font-size: 7px;
    }
    #classification-filter-container select {
        width: 80px;
        font-size: 8px;
        padding-right: 20px;
        background-position: right 7px center;
        background-size: auto 4px;
    }
    .week-carousel-container {
        width: 100%;
        display: block;
    }

    .cfc-team-schedule .mobile .showdown-logo-box {
        width: 15px;
        height: 15px;
    }
    .cfc-team-schedule .mobile .special-game-logo {
        width: 15px;
        height: 15px;
    }
    .cfc-team-schedule .mobile .vs {
        font-size: 10px !important;
    }
    .cfc-team-schedule .mobile .title-row td {
        font-size: 10px !important;
    }
    .cfc-team-schedule .mobile td, .cfc-team-schedule .mobile a {
        font-size: 12px !important;
    }
    .cfc-team-schedule .mobile .logo-box {
        width: 20px;
        height: 20px;
    }

    .cfc-team-schedule th:nth-child(1), .cfc-team-schedule .col-1 { width: 8%; }
    .cfc-team-schedule th:nth-child(2), .cfc-team-schedule .col-2 { width: 24%; }
    .cfc-team-schedule th:nth-child(3), .cfc-team-schedule .col-3 { width: 7%; }
    .cfc-team-schedule th:nth-child(4), .cfc-team-schedule .col-4 { width: 28%; }
    .cfc-team-schedule th:nth-child(5), .cfc-team-schedule .col-5 { width: 16%; }
    .cfc-team-schedule th:nth-child(6), .cfc-team-schedule .col-6 { width: 8%; }
    .cfc-team-schedule th:nth-child(7), .cfc-team-schedule .col-7 { width: 9%; }

    .team-container .ranking-poll-logo-box {
        width: 20px;
        height: 20px;
    }
    .team-container .team-ranking-div {
        font-size: 14px;
        grid-template-columns: auto 20px !important;
    }

    .cfc-team-schedule .date-container {
        display: grid;
    }
    .team-body .team-info-table td {
        font-size: 13px;
    }
    .organization-content .team-info-table td {
        font-size: 13px;
    }
    .organization-content .team-info-table .team-social-links a {
        font-size: 12px;
    }
    .organization-content td:last-child {
        padding-right: 5px;
    }
    .organization-header-container .organization-title-container h1 {
        font-size: 28px;
    }
    .all-logos-container .logo-grid-box {
        grid-template-columns: repeat(2, 1fr);
    }
    .all-logos-container .logo-grid-box .team-info-table .logo-cell .logo-cell-content .logo-content-img-box {
        height: 100px;
    }

    .game-page .game-title-container h3 {
        font-size: 13px;
    }
    .game-page .team-matchup-logo-box {
        max-height: 35px;
        max-width: 35px;
        min-width: 35px;
        min-height: 35px;
    }
    .game-page .team-matchup-container .team-name {
        font-size: 14px;
    }
    .game-page .image-container {
        height: 35px;
    }
    .game-page .poll-image-container {
        max-height: 100%;
    }
    .game-page .poll-image-container.team-logo {
        height: 100%;
    }
    .game-page .team-matchup-logo-box {
        display: block;
    }
    .game-page .team-points {
        font-size: 20px;
    }
    .mobile-game-matchup-container .cfc-team-schedule .showdown-logo-box {
        width: 25px;
        height: 25px;
    }
    .game-page .game-status-header {
        font-size: 20px;
    }
    .game-page .ranking-container {
        padding: 2px;
    }
    .game-page .team-ranking-div {
        gap: 5px;
        font-size: 12px;
    }
    .game-page .ranking-poll-logo-box {
        width: 20px;
        height: 20px;
    }
    .game-page .game-information-item-value h3 {
        display: flex;
        font-size: 1em;
    }
    .game-page .cfc-team-schedule .mobile .special-game-logo {
        width: 15px;
        height: 15px;
    }
    .cfc-team-schedule .showdown-container {
        width: auto;
    }
    
    .article {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
    }
    .article .article-summary {
        font-size: 12px;
    }
    .article .article-author-photo-container {
        width: 25px;
        height: 25px;
        margin-right: 5px;
    }
    .article .article-author a {
        font-size: 12px;
    }
    .article .article-updated {
        font-size: 10px;
    }
    .article .component-text-content h1 {
        font-size: 20px;
    }
    .article .component-text-content h2 {
        font-size: 18px;
    }
    .article .component-text-content p {
        text-indent: 10px;
    }
    .article .component-text-content {
        font-size: 14px;
    }
    .article .component-text-content blockquote {
        font-size: 13px;
    }
    .article .component-text-content ol, .article .component-text-content ul {
        font-size: 13px;
    }
    .article .component-text-content > ol, .article .component-text-content > ul {
        padding: 10px;
    }
    .article .component-text-content li {
        text-indent: 10px;
    }
    .article .component-text-content ol ol li, .article .component-text-content ul ul li {
        text-indent: 15px;
    }
    .article .component-text-content ol ol ol li, .article .component-text-content ul ul ul li {
        text-indent: 20px;
    }
    .article .component-text-content th, .article .component-text-content td {
        padding: 3px;
    }
    .article .component-text-content .table-one th, .article .component-text-content .table-one td {
        padding: 7px;
    }
    .article .carousel-modal-close {
        font-size: 35px;
    }
    .article .carousel-image-full-container {
        gap: 0;
    }
    .article .carousel-container {
        height: auto;
    }
    .article .carousel-modal-prev, .article .carousel-modal-next {
        padding: 5px;
    }
    .articles {
        width: 100%;
    }
    .articles .articles-title-container h1 {
        font-size: 40px;
    }
}

@media (max-width: 300px) {
    .all-logos-container .logo-grid-box {
        grid-template-columns: repeat(1, 1fr);
    }
}

/* End ~ Responsive */