.tp-language-switcher {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 99999;
    font-family: 'Cairo', sans-serif;
    font-size: 14px;
    width: 150px;
}

.tp-language-switcher-current {
    background: #2a3342;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.tp-language-switcher-current:hover {
    background: #3a4352;
}

.tp-language-switcher-current img {
    width: 20px;
    height: 15px;
    margin-left: 8px;
}

.tp-language-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    width: 100%;
    background: #2a3342;
    border-radius: 5px;
    list-style: none;
    padding: 5px 0;
    margin: 0 0 10px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.tp-language-switcher:hover .tp-language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tp-language-dropdown li {
    padding: 8px 15px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.tp-language-dropdown li:hover {
    background: rgba(255,255,255,0.1);
}

.tp-language-dropdown li img {
    width: 20px;
    height: 15px;
    margin-left: 8px;
}

.tp-credit {
    font-size: 10px;
    color: rgba(255,255,255,0.5);
    text-align: center;
    margin-top: 5px;
    font-style: italic;
}