.container {
    display: flex;
    flex-direction: column;

    .pull-left {
        display: flex;
        justify-content: space-between;
        align-items: center;

        @media (max-width: 768px) {
            justify-content: flex-start;
        }

        @media (max-width: 1199px) {
            padding-right: 50px;
        }

        .right {
            display: flex;
            flex-direction: row;
            align-items: center;
        }

        .logoImg {
            height: 55px;
        }

        @media (max-width: 768px) {
            .logoImg {
                height: 30px;
            }
        }

        @media (max-width: 344px) {
            .logoImg {
                width: 30px;
                object-fit: cover;
            }
        }


        .language-toggle {
            display: inline-flex;
            border: 1px solid white;
            margin-left: 30px;
            height: 30px;
            line-height: 30px;
            border-radius: 5px;
            overflow: hidden;
            font-family: Arial, sans-serif;
        }

        .lang-button {
            font-size: 14px;
            cursor: pointer;
            border: none;
            height: 30px;
            line-height: 30px;
            width: 70px;
            text-align: center;
            transition: all 0.2s ease;
            outline: none;
            color: white;
        }

        @media (max-width: 768px) {
            .lang-button {
                font-size: 12px;
                width: 42px;
            }

            .language-toggle {
                margin-left: 5px;
            }
        }

        .lang-button:hover {
            background-color: #f0f0f0;
        }

        .lang-button.active {
            background-color: white;
            color: rgba(27, 20, 100, 0.98);
            margin: -1px; /* To cover the border gap */
        }
    }

    .searchDiv {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 200px;
        flex-direction: row;
        padding: 10px 0;
    }

    @media (max-width: 768px) {
        .searchDiv {
            width: 90px;
            margin-left: 3px;
        }
    }

    .inputView {
        width: 100%;
        border: none;
        height: 30px;
        padding: 0 10px;
        border-radius: 5px 0 0 5px;
    }

    .searchConfirm {
        background: white;
        height: 30px;
        cursor: pointer;
        border-radius: 0 5px 5px 0;
    }

    .searchIcon {
        height: 20px;
        padding: 0 10px;
    }

    @media (max-width: 768px) {
        .searchIcon {
            height: 16px;
        }

        .searchIcon {
            padding: 0 3px;
        }
    }

    #nav-menu-container .nav-menu {
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        margin-top: 15px;
    }

    #menuLogo.header-scrolled {
        display: none;
    }
}