#sidebar-left-sub-menu {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #4b4949;
    transition: left 0.3s ease;
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

#sidebar-left-sub-menu::-webkit-scrollbar {
    width: 5px;
}

#sidebar-left-sub-menu::-webkit-scrollbar-thumb {
    background-color: #d5d5d5;
    border-radius: 5px;
}

#sidebar-left-sub-menu::-webkit-scrollbar-thumb:hover {
    background-color: #9d9d9d;
}

#sidebar-left-sub-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 5px;
}

#sidebar-left-sub-menu.active {
    left: 0;
    z-index: 300;
}

.logo img {
    position: relative;
    bottom: 18px;
    right: 4px;
    height: 100px;
    width: 190px;
}

h1 {
    font-size: 17px;
}

.sidebar-left-sub-menu ul {
    list-style: none;
    padding: 50px 0 0 0;
}

.sidebar-left-sub-menu ul li {
    padding: 1rem;
    text-align: left;
    color: white;
    cursor: pointer;
}

.sidebar-left-sub-menu ul li a {
    color: white;
}

.sidebar-left-sub-menu ul li:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* content part */
/* .content_burger_menu {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
} */

.content_burger_menu h1 {
    font-size: 21px;
    color: #333;
    margin-bottom: 20px;
    display: none;
}

.content_burger_menu p {
    font-size: 12px;
    color: #555;
    line-height: 1.6;
    margin-top: auto;
    display: none; 
}


/* Blog and App parts */

#sidebar-left-sub-menu > ul > li:nth-child(1),
#sidebar-left-sub-menu > ul > li:nth-child(2) {
    opacity: 0.5; 
    pointer-events: none; 
}


#sidebar-left-sub-menu > ul > li:nth-child(1):hover,
#sidebar-left-sub-menu > ul > li:nth-child(2):hover {
    background-color: transparent !important;
    color: inherit !important;
    cursor: default;
}


.sub-menu-bottom-contact-us p {
    padding: 26px 0 4px 0;
    color: #c1c1c1;
}

#sub-menu-bottom {
    padding: 16px 16px 0px 16px;
    text-align: left;
    color: white;
    margin-top: auto;
}

.sub-menu-bottom-donate-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em 3em;
    border: 2px solid transparent;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    color: #393939;
    background-color: #6FC5AA;
    overflow: hidden;
}

.sub-menu-bottom-donate-btn:hover {
    background-color: #87e9ca;
}

.sub-menu-bottom-donate-btn img {
    height: 20px;
    width: 20px;
    margin: 0 10px 0 0;
    vertical-align: top;
}

.email-link {
    font-size: 14.5px;
    color: #fff;
    /* color: rgb(77, 145, 218); */
}

.email-link:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Language block */

.language-selector-wrapper {
    top: 2px;
    position: relative;
    cursor: pointer;
    
}

.language-dropdown {
    position: absolute;
    left: -300px; /* Initially off-screen */
    top: 0;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 6px 0;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    z-index: 0; /* Ensure it is under the sidebar */
    min-width: 90px;
    transition: left 0.3s ease; /* Transition for sliding in */
    /* display: none; */  /* language block hiden  */
}

.language-dropdown.open {
    left: 68px; /* Position when visible */
    z-index: 0; /* Ensure it's still under the sidebar */
}

.language-dropdown div {
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
}

/* Hover effect only when dropdown is open */
.language-dropdown.open div:hover {
    background-color: #f0f0f0;
}

.language-dropdown div img {
    pointer-events: none;
}

.language-dropdown img {
    width: 20px;
    height: 14px;
}

.language-button picture {
    pointer-events: none;
}

/* language block */

.lang-option img {
    height: 20px;
}


.mobile-language-select {
    display: none;
}

#weather-condition {
    white-space: normal;
    word-break: normal;
    overflow-wrap: break-word;
    text-align: center;
}



@media screen and (max-width: 768px) {
    #sidebar-left-sub-menu {
        left: -250px;
        width: 228px;
        height: 100%;
        padding: 30px 10px;
        z-index: 999; 
    }

    .logo img {
        position: relative;
        left: 5px;
        bottom: 27px;
        height: 80px;
        width: 165px;
    }   

    .email-link {
        font-size: 14.6px;
        color: rgb(77, 145, 218);
    }

    .mobile-language-select {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 40px;
        height: 40px;
        opacity: 0;
        z-index: 10;
        cursor: pointer;
    }

    .language-dropdown {
        display: none !important;
    }

    #languageBtn {
        position: relative;
        top: 1px;
    }

    
}
