

.header-content {
    background-color: #ffffff;
    text-align: center;
    line-height: 0.5; /* Set line spacing to 1.5 */
}
    .header-content h1 {
        margin: 0;
        font-size: 36px;
        line-height: 0.5; /* Set line spacing to 1.5 */
    }

.express {
    font-size: 10px;
    color: red;
    margin-bottom: 0px !important;
    padding: 0px !important;
    margin-top: 20px;
    margin-left: calc(50% + 6px); /* Margin 20px from center */
    line-height: 0.5; /* Set line spacing to 1.5 */
}

#tribune {
    color: black;
    font-size: 36px;
    position: relative;
    z-index: 1; /* Ensure the text is above */
}

.header-content span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #888;
}

.login-btn {
    color: white !important;
    text-decoration: none;
    padding: 8px 15px;
    background-color: #007bff; /* Example button color */
    border-radius: 5px;
    margin-left: calc(50% + 60px);
    margin-top: 0px;
}

    .login-btn:hover {
        background-color: #0056b3; /* Example hover color */
    }


.nav-container {
    display: flex;
    justify-content: center;
    padding: 8px 0;
    margin: 0 20px; /* Add margin for left and right */
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch; /* Enables smooth scrolling on iOS */
    -ms-overflow-style: -ms-autohiding-scrollbar; /* Hides scrollbar in Edge */
}

    .nav-container nav {
        display: inline-block;
        white-space: nowrap;
        padding: 8px 0;
        border-top: 3px solid black;
        border-bottom: 1px solid #ddd;
    }

        .nav-container nav a {
            transition: all 0.3s ease;
            margin: 0 8px; /* Adjust margin for spacing */
            text-decoration: none;
            color: #000000 !important;
            font-size: 12px;
            position: relative;
        }

            .nav-container nav a.selected {
                color: #FA1228 !important;
            }

                .nav-container nav a.selected::after {
                    content: "";
                    position: absolute;
                    bottom: -5px;
                    left: 50%;
                    transform: translateX(-50%);
                    width: 50%;
                    border-bottom: 2px solid #FA1228;
                }

@media (max-width: 1200px) {
    .nav-container {
        justify-content: initial; /* Reset justify-content */
        display: block; /* Use block display for smaller screens */

        border-bottom: 1px solid #ccc;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch; /* Enables smooth scrolling on iOS */
        -ms-overflow-style: -ms-autohiding-scrollbar; /* Hides scrollbar in Edge */
    }
}


/*footer section CSS*/

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    border-top: 25px solid black;
    margin:0;
    padding:0;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}

footer.footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    font-size: 14px;
    flex-shrink: 0; /* Ensure footer stays at the bottom */
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    flex: 3;
    justify-content: space-between;
}

.footer-column {
    margin-right: 20px;
}

.footer-links a {
    text-decoration: none;
}

.footer-column h3 {
    margin: 10px 0;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
}

.footer-social {
    flex: 1;
    text-align: right;
}

    .footer-social h3 {
        margin-bottom: 10px;
    }

.social-icons a {
    margin: 0 5px;
    display: inline-block;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.app-buttons a {
    display: inline-block;
    margin: 10px 5px 0 0;
}

.app-buttons img {
    width: 120px;
    height: auto;
}

.footer-bottom {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 12px;
    border-top: 1px solid #333;
}
