body {
    font-family: 'Roboto', Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
    position: relative;
}

.container {
    text-align: center;
    background-color: #fff;
    padding: 80px 60px 25px 60px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 95%;
    max-width: 650px;
    margin: 0 auto;
    z-index: 1;
}

.logo {
    position: absolute;
    top: 10px;
    left: 15px;
    width: 175px;
    height: auto;
}

.hide-logo {
    display: none;
}

input {
    padding: 10px;
    margin: 5px;
    width: 90%;
    font-size: 16px;
}

input::placeholder {
    font-size: 14px;
}
    
.result {
    margin-top: 30px;
    font-size: 1.2em;
    min-height: 1.2em; /* Space left for the result */
}

/* Suggestion List Styles */
.suggestions-list {
    list-style-type: none;
    padding: 0;
    margin: 5px 0;
    border: 1px solid #ccc;
    max-width: calc(100% - 22px);
    text-align: left;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    z-index: 1000;
    width: 90%;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.suggestions-list li {
    padding: 10px;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
}

.suggestions-list li:hover {
    background-color: #f0f0f0;
}

/* Drawer Menu List Styles */
.drawer-menu {
    background-color: #333;
    color: white;
}

.drawer-menu ul {
    list-style-type: none;
    padding: 25px;
    padding-top: 70px;
    margin: 0; /* Reset margin to avoid unwanted spacing */
}

.drawer-menu li {
    margin: 20px 0;
}

.drawer-menu a {
    color: white;
    text-decoration: none;
    font-size: 20px;
}

.drawer-menu a:hover {
    text-decoration: underline; /* Add hover effect for drawer menu links */
}

.language-switcher {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 5px;
}

.language-switcher button {
    background: none;
    border: 1px solid #ccc;
    cursor: pointer;
    width: 28px;
    height: 18px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 2px;
}

.language-switcher button img {
    width: 100%;
    height: 100%;
}

#footer-links {
    text-align: center;
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    color: black;
    margin-bottom: 20px;
}

#footer-links a {
    color: black;
    text-decoration: none;
    margin: 0 5px;
}

.highlighted {
    background-color: #ddd;
    cursor: pointer;
}

@media (max-width: 800px) {
    .container {
        width: 80%;
        padding: 80px 20px 25px 20px;
        position: absolute;
        font-size: 0.9em;
        left: 50%;
        top: 8%;
        transform: translateX(-50%);
    }
    
    #title {
        font-size: 1.45em;
        margin-top: -10px;
    }
    
    .logo {
        width: 125px;
        height: auto;
    }
    
    input {
        padding: 10px;
        width: 90%;
        font-size: 14px;
    }
    
    #footer-links {
        position: fixed;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        bottom: 0%;
        width: 90%;
        font-size: 14px;
    }

    #footer-links a {
        margin: 0 5px;
    }
}

 body {
            font-family: 'Roboto', Arial, sans-serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            margin: 0;
            background-color: #f4f4f4;
            position: relative;
        }

        .container {
            text-align: center;
            background-color: #fff;
            padding: 80px 60px 25px 60px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            position: relative;
            width: 95%;
            max-width: 650px;
            margin: 0 auto;
            z-index: 1;
        }

        .logo {
            position: absolute;
            top: 10px;
            left: 15px;
            width: 175px;
            height: auto;
        }

        input {
            padding: 10px;
            margin: 5px;
            width: 90%;
            font-size: 16px;
        }

        input::placeholder {
            font-size: 14px;
        }

        .result {
            margin-top: 30px;
            font-size: 1.2em;
            min-height: 1.2em;
        }

        /* Suggestion List Styles */
        .suggestions-list {
            list-style-type: none;
            padding: 0;
            margin: 5px 0;
            border: 1px solid #ccc;
            max-width: calc(100% - 22px);
            text-align: left;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            background-color: #fff;
            z-index: 1000;
            width: 78%;
            max-height: 200px;
            overflow-y: auto;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Individual suggestion item */
        .suggestions-list li {
            padding: 10px;
            cursor: pointer;
            border-bottom: 1px solid #ccc;
        }

        .suggestions-list li:hover {
            background-color: #f0f0f0;
        }

        /* Language Switcher Styles */
        .language-switcher {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            gap: 5px;
        }

        .language-switcher button {
            background: none;
            border: 1px solid #ccc;
            cursor: pointer;
            width: 28px;
            height: 18px;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 2px;
        }

        /* Footer Links */
        #footer-links {
            text-align: center;
            position: absolute;
            bottom: 5px;
            left: 50%;
            transform: translateX(-50%);
            color: black;
            margin-bottom: 20px;
        }

        #footer-links a {
            color: black;
            text-decoration: none;
            margin: 0 5px;
        }

        /* Mobile Drawer Menu Styles */
        .burger {
            font-size: 23px;
            cursor: pointer;
            padding: 10px;
            position: fixed;
            top: 10px;
            left: 10px;
            z-index: 2;
            -webkit-tap-highlight-color: transparent;
        }
        


        @media (min-width: 801px) and (min-height: 500px) {
            .burger {
                display: none;
            }
        }
        


        .drawer-menu {
            position: fixed;
            left: -250px;
            top: 0;
            height: 100%;
            width: 250px;
            background-color: #333;
            color: white;
            transition: left 0.3s ease;
            z-index: 5;
        }

        .close-btn {
            font-size: 24px;
            cursor: pointer;
            position: absolute;
            top: 25px;
            right: 25px;
            color: white;
            -webkit-tap-highlight-color: transparent;
        }

        .drawer-menu.active {
            left: 0;
        }

        /* Drawer Menu List Styles */
        .drawer-menu ul {
            list-style-type: none;
            padding: 25px;
            padding-top: 70px;
            margin: 0; /* Reset margin to avoid unwanted spacing */
        }

        .drawer-menu li {
            margin: 20px 0;
        }

        .drawer-menu a {
            color: white;
            text-decoration: none;
            font-size: 20px;
        }

        .drawer-menu a:hover {
            text-decoration: underline; /* Add hover effect for drawer menu links */
        }

        @media (max-width: 800px), (max-height: 500px) {
            #footer-links {
                display: none;
            }
        }

        /* Media Queries for Responsiveness */
        @media (max-width: 800px) {
            .container {
                width: 80%;
                padding: 80px 20px 25px 20px;
                position: absolute;
                font-size: 0.9em;
                left: 50%;
                top: 8%;
                transform: translateX(-50%);
            }
            #title {
                font-size: 1.45em;
                margin-top: -10px;
            }
            .logo {
                width: 125px;
                height: auto;
            }
            input {
                padding: 10px;
                width: 90%;
                font-size: 14px;
            }
            #footer-links {
                position: fixed;
                left: 50%;
                transform: translateX(-50%);
                text-align: center;
                bottom: 0%;
                width: 90%;
                font-size: 14px;
            }
            #footer-links a {
                margin: 0 5px;
            }
        }