* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
}
    /* Nav Start */
/* Upcoming CSS */
.scoreboard-container {
    display: flex;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 0 10px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.upcoming-button {
    padding: 8px 16px;
    border: 1px solid #ddd;
    border-radius: 20px;
    margin-right: 10px;
    font-size: 14px;
    color: #333;
    background-color: #f9f9f9;
    cursor: pointer;
}

.matches-container {
    display: flex;
    gap: 10px;
    flex: 1;
    overflow-x: auto; /* Enable horizontal scrolling */
    overflow-y: hidden;
    padding: 10px 0;
    scroll-behavior: smooth;
    white-space: nowrap; /* Prevent wrapping */
}

.matches-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar */
}

.match-item {
    display: inline-block;
    border: 1px solid #ddd;
    padding: 5px 10px;
    text-align: start;
    font-size: 14px;
    background-color: #fff;
    white-space: nowrap; /* Keep content on one line */
}

.match-item img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
    vertical-align: middle;
}

.match-date {
    font-weight: bold;
    font-size: 12px;
    color: #555;
    margin-bottom: 5px;
}

.navigation {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: #333;
    margin-left: 10px;
}

.navigation-btn {
    border: none;
    background: none;
    font-size: 16px;
    cursor: pointer;
    margin: 0 2px;
    color: #666;
}

.navigation a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .upcoming-button{
        max-width: 100px;
        font-size: 10px;
        text-align: center;
        padding: 5px;
    }
    .match-item {
        font-size: 12px;
        padding: 5px;
    }

    .navigation{
        max-width: 80px;
    }

    .navigation-btn{
        font-size: 16px;
        margin: 0 1px;
    }

    .navigation a {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .match-item {
        font-size: 10px;
        padding: 3px;
    }

    .navigation-btn {
        font-size: 12px;
    }

    .navigation a {
        font-size: 10px;
    }
}

/* Header 2 start */        
.header_container {
    width: 100%;
    height: auto;
    padding: 10px 20px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header_container h1{
    font-weight: 800;
    color: #2F405C;
}

.header_container > a img {
    width: 60px;
    height: auto;
}

.header_container > h1 {
    font-size: 28px;
    margin: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header_container {
        padding: 10px 15px;
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
        justify-content: start; /* Center the content */
        text-align: center;
    }

    .header_container > a img {
        width: 50px;
    }

    .header_container > h1 {
        font-size: 28px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .header_container {
        padding: 5px 10px;
        gap: 10px;
    }

    .header_container > a img {
        width: 40px;
    }

    .header_container > h1 {
        font-size: 20px;
    }
}
/* Fullscreen Menu Styling */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 37, 41, 0.95); /* Dark semi-transparent */
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: none; /* Hidden by default */
}

.fullscreen-menu.show {
    display: flex; /* Show when toggled */
}

.fullscreen-menu a {
    text-decoration: none;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.fullscreen-menu a:hover {
    color: #ffc107; /* Highlight color */
}

.close-btn {
    position: absolute;
    top: 0;
    right: 1rem;
    font-size: 2.5rem;
    color: #fff;
    cursor: pointer;
    border: none;
    background: none;
} 

/* Nav end */
/* nav links underline effect start*/
.nav_link {
    font-weight: bold;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    position: relative;
    opacity: 0.75;
}

.nav_link:hover {
    opacity: 1;
}
.nav_link::before {
    transition: 300ms;
    height: 5px;
    content: "";
    position: absolute;
    background-color: #fff;
}

.nav_link_ltr::before {
    width: 0%;
    bottom: -5px;
}

.nav_link_ltr:hover::before {
    width: 100%;
}
/* nav links underline effect end*/