.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.nav-btn {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    margin: 0;

    background: transparent;
    border: none;

    color: #111;
    cursor: pointer;

    position: relative;

    margin-top: 10px;
}

.nav-btn svg {
    width: 22px;
    height: 22px;
    display: block;
}

.nav-avatar {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #6C5CE7;
    color: white;

    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    
    margin-top: 10px;
}

.login-outline-btn {
    height: 42px;
    padding: 0 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #dcdcdc;
    border-radius: 14px;

    background: transparent;
    color: #111;

    font-size: 14px;
    font-weight: 600;
    text-decoration: none;

    margin-top: 10px;
}

.login-outline-btn:hover{
    background: #6c5ce7;
    color: white;
    border-color: #6c5ce7;
}