/* Pop-up (modal) na stred obrazovky */
#languageModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    width: 350px;
}

.language-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    margin: 10px 0;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    background: #adb5bd;
    color: white;
    transition: 0.3s;
}

.language-btn:hover {
    background: #683e9b;
    color: black;
}

.language-btn img {
    width: 25px;
    height: 18px;
    margin-right: 10px;
    border-radius: 3px;
}

/*privacy policy css end*/