/**
 * Profile Switcher Component
 * 
 * Language switcher for profile forms
 */

#switcher-forms-add-profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-white);
    border-radius: 36px;
    padding: 10px 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    gap: 10px;
    margin: auto;
    width: fit-content;
    cursor: default;
    user-select: none;
}

.profile-switcher-text {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-text-light);
    cursor: pointer;
    transition: color var(--transition-normal);
}

.profile-switcher-text.active {
    color: var(--color-text);
}

.profile-switcher-arrow {
    display: flex;
    align-items: center;
    transition: transform var(--transition-normal);
}

.profile-switcher-state-eng .profile-switcher-arrow {
    transform: rotate(0deg);
}

.profile-switcher-state-rus .profile-switcher-arrow {
    transform: rotate(180deg);
}