.language-switcher {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.language-switcher .dropdown-toggle {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all 0.3s ease;
}

.language-switcher .dropdown-toggle:hover {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.language-switcher .dropdown-toggle::after {
    margin-left: 4px;
}

.language-switcher .dropdown-menu {
    min-width: 150px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e5e7eb;
    padding: 8px;
}

.language-switcher .dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.language-switcher .dropdown-item:hover {
    background-color: #f3f4f6;
}

.language-switcher .dropdown-item.active {
    background-color: #dbeafe;
    color: #0984e3;
    font-weight: 600;
}

.language-switcher img {
    width: 20px;
    height: 20px;
    object-fit: cover;
    border-radius: 50%;
}

.card {
    margin-bottom: 1.5rem;
    background-color: #ffffff;
    transition: all 0.5s
ease-in-out;
    position: relative;
    border-radius: 36px;
    border: 1px solid #E6EAED;
    color: inherit;
    box-shadow: 0px 5px 4px rgb(0 0 0 / 10%);
}

.login-wrapper .login-content .login-userheading h3{
    color: #151e3a;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    font-family: 'Inter', sans-serif;
}

.login-wrapper .login-content .login-userheading h4{
    color: #6b7280;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .language-switcher {
        top: 10px;
        right: 10px;
    }
}
